diff options
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.44 2002/05/01 20:40:42 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.45 2002/05/15 18:57:44 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 | */ |
@@ -35,14 +35,13 @@ int luaD_protectedparser (lua_State *L, ZIO *z, int bin); | |||
35 | void luaD_lineHook (lua_State *L, int line); | 35 | void luaD_lineHook (lua_State *L, int line); |
36 | StkId luaD_precall (lua_State *L, StkId func); | 36 | StkId luaD_precall (lua_State *L, StkId func); |
37 | void luaD_call (lua_State *L, StkId func, int nResults); | 37 | void luaD_call (lua_State *L, StkId func, int nResults); |
38 | int luaD_pcall (lua_State *L, int nargs, int nresults, const TObject *err); | 38 | int luaD_pcall (lua_State *L, int nargs, int nresults); |
39 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); | 39 | void luaD_poscall (lua_State *L, int wanted, StkId firstResult); |
40 | void luaD_reallocCI (lua_State *L, int newsize); | 40 | void luaD_reallocCI (lua_State *L, int newsize); |
41 | void luaD_reallocstack (lua_State *L, int newsize); | 41 | void luaD_reallocstack (lua_State *L, int newsize); |
42 | void luaD_growstack (lua_State *L, int n); | 42 | void luaD_growstack (lua_State *L, int n); |
43 | 43 | ||
44 | void luaD_error (lua_State *L, const char *s, int errcode); | 44 | void luaD_throw (lua_State *L, int errcode); |
45 | void luaD_errorobj (lua_State *L, const TObject *s, int errcode); | ||
46 | int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); | 45 | int luaD_runprotected (lua_State *L, Pfunc f, TObject *ud); |
47 | 46 | ||
48 | 47 | ||