diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-18 18:52:30 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-18 18:52:30 -0200 |
commit | e04f7ed4509af1577c10ead8e5d7d55c65754bf8 (patch) | |
tree | 36cfd31846b6f49c505adfbd1311ed1794689127 /ldo.h | |
parent | 101cee3032918bae8a5fa9dfc334c478c4aa15f6 (diff) | |
download | lua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.tar.gz lua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.tar.bz2 lua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.zip |
first version of Lua "stackless"
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); |