diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-01 14:03:38 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-01 14:03:38 -0200 |
commit | 4ab6acacdfdb5d5d29ed4d089aeda3ec6d82670b (patch) | |
tree | 86b28ac2c82f1d69a29ec8c842e6b559ad2b9923 /lvm.h | |
parent | 68587639945aa68844871fdd74a6729b653f523a (diff) | |
download | lua-4ab6acacdfdb5d5d29ed4d089aeda3ec6d82670b.tar.gz lua-4ab6acacdfdb5d5d29ed4d089aeda3ec6d82670b.tar.bz2 lua-4ab6acacdfdb5d5d29ed4d089aeda3ec6d82670b.zip |
better control of relationship top x L->top
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.26 2000/09/05 19:33:32 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.27 2000/10/05 12:14:08 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,10 +19,10 @@ | |||
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 | const TObject *luaV_gettable (lua_State *L, StkId t); | 22 | void luaV_gettable (lua_State *L, StkId t, StkId top, StkId res); |
23 | void luaV_settable (lua_State *L, StkId t, StkId key); | 23 | void luaV_settable (lua_State *L, StkId t, StkId key, StkId top); |
24 | const TObject *luaV_getglobal (lua_State *L, TString *s); | 24 | void luaV_getglobal (lua_State *L, TString *s, StkId top); |
25 | void luaV_setglobal (lua_State *L, TString *s); | 25 | void luaV_setglobal (lua_State *L, TString *s, StkId top); |
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); |