mirror of
https://github.com/lua/lua.git
synced 2024-11-28 04:33:53 +08:00
21 lines
297 B
C
21 lines
297 B
C
|
/*
|
||
|
** $Id: $
|
||
|
** auxiliar 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 (TObject *o);
|
||
|
void luaA_packresults (void);
|
||
|
int luaA_passresults (void);
|
||
|
|
||
|
#endif
|