1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2002-06-12 07:56:22 -07:00
|
|
|
** $Id: lvm.h,v 1.40 2002/06/03 14:08:43 roberto Exp roberto $
|
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)))
|
|
|
|
|
2002-03-04 13:33:09 -08:00
|
|
|
#define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
|
|
|
|
(((o) = luaV_tonumber(o,n)) != NULL))
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2002-06-12 07:56:22 -07:00
|
|
|
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
|
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);
|
2002-03-19 04:45:25 -08:00
|
|
|
void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId res);
|
|
|
|
void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
|
2002-01-09 14:02:47 -08:00
|
|
|
StkId luaV_execute (lua_State *L);
|
2002-06-03 07:08:43 -07:00
|
|
|
void luaV_concat (lua_State *L, int total, int last);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|