diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ | 2 | ** $Id: ldo.h,v 1.38 2002/01/11 20:24:39 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 | */ |
@@ -22,7 +22,6 @@ | |||
22 | #define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L) | 22 | #define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L) |
23 | 23 | ||
24 | 24 | ||
25 | void luaD_init (lua_State *L, int stacksize); | ||
26 | void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); | 25 | void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); |
27 | void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event); | 26 | void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event); |
28 | StkId luaD_precall (lua_State *L, StkId func); | 27 | StkId luaD_precall (lua_State *L, StkId func); |