summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lvm.h')
-rw-r--r--apps/plugins/lua/lvm.h26
1 files changed, 17 insertions, 9 deletions
diff --git a/apps/plugins/lua/lvm.h b/apps/plugins/lua/lvm.h
index dff2a139f7..5380270da6 100644
--- a/apps/plugins/lua/lvm.h
+++ b/apps/plugins/lua/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id$ 2** $Id: lvm.h,v 2.18.1.1 2013/04/12 18:48:47 roberto Exp $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -13,24 +13,32 @@
13#include "ltm.h" 13#include "ltm.h"
14 14
15 15
16#define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o))) 16#define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o)))
17 17
18#define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \ 18#define tonumber(o,n) (ttisnumber(o) || (((o) = luaV_tonumber(o,n)) != NULL))
19 (((o) = luaV_tonumber(o,n)) != NULL))
20 19
21#define equalobj(L,o1,o2) \ 20#define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2))
22 (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) 21
22#define luaV_rawequalobj(o1,o2) equalobj(NULL,o1,o2)
23
24
25/* not to called directly */
26LUAI_FUNC int luaV_equalobj_ (lua_State *L, const TValue *t1, const TValue *t2);
23 27
24 28
25LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); 29LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
26LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); 30LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
27LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n); 31LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
28LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj); 32LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
29LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, 33LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,
30 StkId val); 34 StkId val);
31LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, 35LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
32 StkId val); 36 StkId val);
33LUAI_FUNC void luaV_execute (lua_State *L, int nexeccalls); 37LUAI_FUNC void luaV_finishOp (lua_State *L);
34LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); 38LUAI_FUNC void luaV_execute (lua_State *L);
39LUAI_FUNC void luaV_concat (lua_State *L, int total);
40LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
41 const TValue *rc, TMS op);
42LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);
35 43
36#endif 44#endif