diff options
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.48 2003/05/05 18:39:57 roberto Exp $ | 2 | ** $Id: lvm.h,v 1.49 2003/07/16 20:49:02 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,12 +22,12 @@ | |||
22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) | 22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) |
23 | 23 | ||
24 | 24 | ||
25 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); | 25 | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); |
26 | int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); | 26 | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); |
27 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); | 27 | const TValue *luaV_tonumber (const TValue *obj, TValue *n); |
28 | int luaV_tostring (lua_State *L, StkId obj); | 28 | int luaV_tostring (lua_State *L, StkId obj); |
29 | void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val); | 29 | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val); |
30 | void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); | 30 | void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val); |
31 | StkId luaV_execute (lua_State *L, int nexeccalls); | 31 | StkId luaV_execute (lua_State *L, int nexeccalls); |
32 | void luaV_concat (lua_State *L, int total, int last); | 32 | void luaV_concat (lua_State *L, int total, int last); |
33 | 33 | ||