diff options
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 |