diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-07 16:13:49 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-07 16:13:49 -0200 |
commit | 7178a5e34aa56c09a01a6664bb7a61c6771700d4 (patch) | |
tree | 318a1dd14cd5a0497229183e56e29198b3b2016c /lvm.h | |
parent | 322b7b5fc55da0d166efc693cfe674220190b010 (diff) | |
download | lua-7178a5e34aa56c09a01a6664bb7a61c6771700d4.tar.gz lua-7178a5e34aa56c09a01a6664bb7a61c6771700d4.tar.bz2 lua-7178a5e34aa56c09a01a6664bb7a61c6771700d4.zip |
new way to handle top x L->top
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.27 2000/10/05 12:14:08 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.28 2001/02/01 16:03:38 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,14 +19,14 @@ | |||
19 | 19 | ||
20 | int luaV_tonumber (TObject *obj); | 20 | int luaV_tonumber (TObject *obj); |
21 | int luaV_tostring (lua_State *L, TObject *obj); | 21 | int luaV_tostring (lua_State *L, TObject *obj); |
22 | void luaV_gettable (lua_State *L, StkId t, StkId top, StkId res); | 22 | void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res); |
23 | void luaV_settable (lua_State *L, StkId t, StkId key, StkId top); | 23 | void luaV_settable (lua_State *L, StkId t, StkId key, StkId val); |
24 | void luaV_getglobal (lua_State *L, TString *s, StkId top); | 24 | void luaV_getglobal (lua_State *L, TString *s, StkId res); |
25 | void luaV_setglobal (lua_State *L, TString *s, StkId top); | 25 | void luaV_setglobal (lua_State *L, TString *s, StkId val); |
26 | StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); | 26 | StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); |
27 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); | 27 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); |
28 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); | 28 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); |
29 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); | 29 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); |
30 | void luaV_strconc (lua_State *L, int total, StkId top); | 30 | void luaV_strconc (lua_State *L, int total, StkId top); |
31 | 31 | ||
32 | #endif | 32 | #endif |