diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 2.9 2008/07/03 14:24:36 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 2.10 2008/08/13 17:02:42 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -34,7 +34,8 @@ typedef void (*Pfunc) (lua_State *L, void *ud); | |||
34 | LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name); | 34 | LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name); |
35 | LUAI_FUNC void luaD_callhook (lua_State *L, int event, int line); | 35 | LUAI_FUNC void luaD_callhook (lua_State *L, int event, int line); |
36 | LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults); | 36 | LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults); |
37 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); | 37 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults, |
38 | int allowyield); | ||
38 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, | 39 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, |
39 | ptrdiff_t oldtop, ptrdiff_t ef); | 40 | ptrdiff_t oldtop, ptrdiff_t ef); |
40 | LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); | 41 | LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); |