2009-05-21 19:01:41 +00:00
|
|
|
/*
|
2014-04-02 18:46:06 +00:00
|
|
|
** $Id$
|
2009-05-21 19:01:41 +00:00
|
|
|
** Auxiliary functions from Lua API
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lapi_h
|
|
|
|
#define lapi_h
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#include "lobject.h"
|
2009-05-21 19:01:41 +00:00
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
|
2009-05-21 19:01:41 +00:00
|
|
|
|
|
|
|
#endif
|