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"
|
1998-07-12 20:16:43 +04:00
|
|
|
#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);
|
1999-11-22 16:12:07 +03:00
|
|
|
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);
|
2000-04-19 17:36:25 +04:00
|
|
|
StkId luaV_execute (lua_State *L, const Closure *cl, StkId base);
|
2000-03-30 00:19:20 +04:00
|
|
|
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
|