1
0
mirror of https://github.com/lua/lua.git synced 2025-01-28 06:03:00 +08:00
lua/lapi.h

24 lines
480 B
C
Raw Normal View History

1997-09-16 16:25:59 -03:00
/*
** $Id: lapi.h,v 1.6 1999/09/20 14:57:29 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);
lua_Object luaA_putObjectOnTop (void);
1997-09-16 16:25:59 -03:00
#endif