lua/lvm.h

33 lines
1.0 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2001-02-07 21:13:49 +03:00
** $Id: lvm.h,v 1.28 2001/02/01 16:03:38 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"
#include "ltm.h"
1997-09-16 23:25:59 +04:00
2000-10-05 16:14:08 +04:00
#define tonumber(o) ((ttype(o) != LUA_TNUMBER) && (luaV_tonumber(o) != 0))
#define tostring(L,o) ((ttype(o) != LUA_TSTRING) && (luaV_tostring(L, o) != 0))
1997-09-16 23:25:59 +04:00
int luaV_tonumber (TObject *obj);
int luaV_tostring (lua_State *L, TObject *obj);
2001-02-07 21:13:49 +03:00
void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res);
void luaV_settable (lua_State *L, StkId t, StkId key, StkId val);
void luaV_getglobal (lua_State *L, TString *s, StkId res);
void luaV_setglobal (lua_State *L, TString *s, StkId val);
StkId luaV_execute (lua_State *L, const Closure *cl, StkId base);
void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems);
void luaV_Lclosure (lua_State *L, Proto *l, int nelems);
2001-02-07 21:13:49 +03:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
2000-09-05 23:33:32 +04:00
void luaV_strconc (lua_State *L, int total, StkId top);
1997-09-16 23:25:59 +04:00
#endif