lua/lapi.h

24 lines
479 B
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
** $Id: lapi.h,v 1.5 1999/08/16 20:52:00 roberto Exp roberto $
1998-06-20 00:14:09 +08:00
** Auxiliary functions from Lua API
1997-09-17 03:25:59 +08: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-17 04:52:00 +08:00
void luaA_pushobject (const TObject *o);
1997-09-17 03:25:59 +08:00
void luaA_packresults (void);
int luaA_passresults (void);
1999-02-23 03:13:12 +08:00
TaggedString *luaA_nextvar (TaggedString *g);
1999-08-17 04:52:00 +08:00
int luaA_next (const Hash *t, int i);
lua_Object put_luaObjectonTop (void);
1997-09-17 03:25:59 +08:00
#endif