1997-09-16 16:25:59 -03:00
|
|
|
/*
|
1999-08-16 17:52:00 -03:00
|
|
|
** $Id: lapi.h,v 1.4 1999/02/23 14:57:28 roberto Exp roberto $
|
1998-06-19 13:14:09 -03:00
|
|
|
** Auxiliary functions from Lua API
|
1997-09-16 16:25:59 -03:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lapi_h
|
|
|
|
#define lapi_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
|
|
|
TObject *luaA_Address (lua_Object o);
|
1999-08-16 17:52:00 -03:00
|
|
|
void luaA_pushobject (const TObject *o);
|
1997-09-16 16:25:59 -03:00
|
|
|
void luaA_packresults (void);
|
|
|
|
int luaA_passresults (void);
|
1999-02-22 16:13:12 -03:00
|
|
|
TaggedString *luaA_nextvar (TaggedString *g);
|
1999-08-16 17:52:00 -03:00
|
|
|
int luaA_next (const Hash *t, int i);
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|