diff options
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.2 2004/05/14 19:25:09 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.3 2005/04/04 18:12:51 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,15 @@ | |||
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 TValue *l, const TValue *r); | 25 | LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); |
26 | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); | 26 | LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); |
27 | const TValue *luaV_tonumber (const TValue *obj, TValue *n); | 27 | LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n); |
28 | int luaV_tostring (lua_State *L, StkId obj); | 28 | LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj); |
29 | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val); | 29 | LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, |
30 | void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val); | 30 | StkId val); |
31 | StkId luaV_execute (lua_State *L, int nexeccalls); | 31 | LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, |
32 | void luaV_concat (lua_State *L, int total, int last); | 32 | StkId val); |
33 | LUAI_FUNC StkId luaV_execute (lua_State *L, int nexeccalls); | ||
34 | LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); | ||
33 | 35 | ||
34 | #endif | 36 | #endif |