1997-09-16 23:25:59 +04:00
|
|
|
/*
|
1999-11-22 16:12:07 +03:00
|
|
|
** $Id: lvm.h,v 1.11 1999/11/04 17:22:26 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lvm_h
|
|
|
|
#define lvm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "ldo.h"
|
|
|
|
#include "lobject.h"
|
1998-07-12 20:16:43 +04:00
|
|
|
#include "ltm.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0))
|
1999-11-22 16:12:07 +03:00
|
|
|
#define tostring(L, o) ((ttype(o) != LUA_T_STRING) && (luaV_tostring(L, o) != 0))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaV_pack (lua_State *L, StkId firstel, int nvararg, TObject *tab);
|
1997-09-16 23:25:59 +04:00
|
|
|
int luaV_tonumber (TObject *obj);
|
1999-11-22 16:12:07 +03:00
|
|
|
int luaV_tostring (lua_State *L, TObject *obj);
|
|
|
|
void luaV_setn (lua_State *L, Hash *t, int val);
|
|
|
|
void luaV_gettable (lua_State *L);
|
|
|
|
void luaV_settable (lua_State *L, const TObject *t);
|
|
|
|
void luaV_rawsettable (lua_State *L, const TObject *t);
|
|
|
|
void luaV_getglobal (lua_State *L, GlobalVar *gv);
|
|
|
|
void luaV_setglobal (lua_State *L, GlobalVar *gv);
|
|
|
|
StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base);
|
|
|
|
void luaV_closure (lua_State *L, int nelems);
|
|
|
|
void luaV_comparison (lua_State *L, lua_Type ttype_less, lua_Type ttype_equal,
|
1998-07-12 20:16:43 +04:00
|
|
|
lua_Type ttype_great, IMS op);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|