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.31 2017/06/29 15:06:44 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 2.31 2017/06/29 15:06:44 roberto Exp $ |
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 | */ |
@@ -52,7 +52,8 @@ 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); | 52 | LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); |
53 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, | 53 | LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, |
54 | ptrdiff_t oldtop, ptrdiff_t ef); | 54 | ptrdiff_t oldtop, ptrdiff_t ef); |
55 | LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult, int nres); | 55 | LUAI_FUNC int luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, |
56 | int nres); | ||
56 | LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); | 57 | LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); |
57 | LUAI_FUNC void luaD_growstack (lua_State *L, int n); | 58 | LUAI_FUNC void luaD_growstack (lua_State *L, int n); |
58 | LUAI_FUNC void luaD_shrinkstack (lua_State *L); | 59 | LUAI_FUNC void luaD_shrinkstack (lua_State *L); |