diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 2.31 2017/06/29 15:06:44 roberto Exp $ | 2 | ** $Id: ldo.h,v 2.33 2017/11/07 13:25:26 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 | */ |
@@ -48,8 +48,10 @@ LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, | |||
48 | const char *mode); | 48 | const char *mode); |
49 | LUAI_FUNC void luaD_hook (lua_State *L, int event, int line); | 49 | LUAI_FUNC void luaD_hook (lua_State *L, int event, int line); |
50 | LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults); | 50 | LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults); |
51 | LUAI_FUNC void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int n); | ||
51 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); | 52 | LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); |
52 | LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); | 53 | LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); |
54 | LUAI_FUNC StkId luaD_tryfuncTM (lua_State *L, StkId func); | ||
53 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, | 55 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, |
54 | ptrdiff_t oldtop, ptrdiff_t ef); | 56 | ptrdiff_t oldtop, ptrdiff_t ef); |
55 | LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, | 57 | LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, |