1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2001-12-05 12:15:18 -08:00
|
|
|
** $Id: lvm.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
|
1997-09-16 12:25:59 -07: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 09:16:43 -07:00
|
|
|
#include "ltm.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2002-02-07 09:24:05 -08:00
|
|
|
#define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
|
|
|
|
|
|
|
|
#define tonumber(o,n) (((o) = luaV_tonumber(o,n)) != NULL)
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2001-06-05 11:17:01 -07:00
|
|
|
const TObject *luaV_tonumber (const TObject *obj, TObject *n);
|
1999-11-22 05:12:07 -08:00
|
|
|
int luaV_tostring (lua_State *L, TObject *obj);
|
2001-02-07 10:13:49 -08:00
|
|
|
void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res);
|
2001-06-05 11:17:01 -07:00
|
|
|
void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val);
|
2002-01-09 14:02:47 -08:00
|
|
|
StkId luaV_execute (lua_State *L);
|
2001-02-07 10:13:49 -08:00
|
|
|
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
|
2002-01-16 14:04:50 -08:00
|
|
|
void luaV_strconc (lua_State *L, int total, int last);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|