aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/lvm.h b/lvm.h
index 0e096c96..b120286c 100644
--- a/lvm.h
+++ b/lvm.h
@@ -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
25int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); 25LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
26int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); 26LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
27const TValue *luaV_tonumber (const TValue *obj, TValue *n); 27LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
28int luaV_tostring (lua_State *L, StkId obj); 28LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
29void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val); 29LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,
30void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val); 30 StkId val);
31StkId luaV_execute (lua_State *L, int nexeccalls); 31LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
32void luaV_concat (lua_State *L, int total, int last); 32 StkId val);
33LUAI_FUNC StkId luaV_execute (lua_State *L, int nexeccalls);
34LUAI_FUNC void luaV_concat (lua_State *L, int total, int last);
33 35
34#endif 36#endif