diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-01 17:50:08 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-01 17:50:08 -0200 |
commit | fe237ad8085f34e89fcd3610a9771215af63f03f (patch) | |
tree | f7ee5d8f7d1ffb74e94f049aa6f31eb03606cdf6 /lvm.h | |
parent | 3181dfefee40b9a424b80aa779c671f5f458904c (diff) | |
download | lua-fe237ad8085f34e89fcd3610a9771215af63f03f.tar.gz lua-fe237ad8085f34e89fcd3610a9771215af63f03f.tar.bz2 lua-fe237ad8085f34e89fcd3610a9771215af63f03f.zip |
fixed stack; first version.
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.11 1999/11/04 17:22:26 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.12 1999/11/22 13:12:07 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 | */ |
@@ -22,13 +22,13 @@ int luaV_tonumber (TObject *obj); | |||
22 | int luaV_tostring (lua_State *L, TObject *obj); | 22 | int luaV_tostring (lua_State *L, TObject *obj); |
23 | void luaV_setn (lua_State *L, Hash *t, int val); | 23 | void luaV_setn (lua_State *L, Hash *t, int val); |
24 | void luaV_gettable (lua_State *L); | 24 | void luaV_gettable (lua_State *L); |
25 | void luaV_settable (lua_State *L, const TObject *t); | 25 | void luaV_settable (lua_State *L, StkId t); |
26 | void luaV_rawsettable (lua_State *L, const TObject *t); | 26 | void luaV_rawsettable (lua_State *L, StkId t); |
27 | void luaV_getglobal (lua_State *L, GlobalVar *gv); | 27 | void luaV_getglobal (lua_State *L, GlobalVar *gv); |
28 | void luaV_setglobal (lua_State *L, GlobalVar *gv); | 28 | void luaV_setglobal (lua_State *L, GlobalVar *gv); |
29 | StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base); | 29 | StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base); |
30 | void luaV_closure (lua_State *L, int nelems); | 30 | void luaV_closure (lua_State *L, int nelems); |
31 | void luaV_comparison (lua_State *L, lua_Type ttype_less, lua_Type ttype_equal, | 31 | void luaV_comparison (lua_State *L, StkId top, lua_Type ttype_less, |
32 | lua_Type ttype_great, IMS op); | 32 | lua_Type ttype_equal, lua_Type ttype_great, IMS op); |
33 | 33 | ||
34 | #endif | 34 | #endif |