diff options
Diffstat (limited to 'apps/plugins/lua/lapi.h')
| -rw-r--r-- | apps/plugins/lua/lapi.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/plugins/lua/lapi.h b/apps/plugins/lua/lapi.h new file mode 100644 index 0000000..f968ffc --- /dev/null +++ b/apps/plugins/lua/lapi.h @@ -0,0 +1,16 @@ +/* +** $Id$ +** Auxiliary functions from Lua API +** See Copyright Notice in lua.h +*/ + +#ifndef lapi_h +#define lapi_h + + +#include "lobject.h" + + +LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); + +#endif |