mirror of
https://github.com/lua/lua
synced 2024-11-23 13:19:57 +03:00
17374d2daa
it must have a "public" name: `luaA_putObjectOnTop'
24 lines
480 B
C
24 lines
480 B
C
/*
|
|
** $Id: lapi.h,v 1.6 1999/09/20 14:57:29 roberto Exp roberto $
|
|
** Auxiliary functions from Lua API
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lapi_h
|
|
#define lapi_h
|
|
|
|
|
|
#include "lua.h"
|
|
#include "lobject.h"
|
|
|
|
|
|
TObject *luaA_Address (lua_Object o);
|
|
void luaA_pushobject (const TObject *o);
|
|
void luaA_packresults (void);
|
|
int luaA_passresults (void);
|
|
TaggedString *luaA_nextvar (TaggedString *g);
|
|
int luaA_next (const Hash *t, int i);
|
|
lua_Object luaA_putObjectOnTop (void);
|
|
|
|
#endif
|