diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.34 2001/06/08 19:00:57 roberto Exp $ | 2 | ** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ |
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 | */ |
@@ -25,7 +25,10 @@ | |||
25 | void luaD_init (lua_State *L, int stacksize); | 25 | void luaD_init (lua_State *L, int stacksize); |
26 | void luaD_adjusttop (lua_State *L, StkId newtop); | 26 | void luaD_adjusttop (lua_State *L, StkId newtop); |
27 | void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); | 27 | void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); |
28 | void luaD_call (lua_State *L, StkId func); | 28 | void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event); |
29 | StkId luaD_precall (lua_State *L, StkId func); | ||
30 | void luaD_call (lua_State *L, StkId func, int nResults); | ||
31 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); | ||
29 | void luaD_stackerror (lua_State *L); | 32 | void luaD_stackerror (lua_State *L); |
30 | 33 | ||
31 | void luaD_error (lua_State *L, const char *s); | 34 | void luaD_error (lua_State *L, const char *s); |