diff options
Diffstat (limited to 'lapi.h')
-rw-r--r-- | lapi.h | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | ** $Id: $ | ||
3 | ** auxiliar functions from Lua API | ||
4 | ** See Copyright Notice in lua.h | ||
5 | */ | ||
6 | |||
7 | #ifndef lapi_h | ||
8 | #define lapi_h | ||
9 | |||
10 | |||
11 | #include "lua.h" | ||
12 | #include "lobject.h" | ||
13 | |||
14 | |||
15 | TObject *luaA_Address (lua_Object o); | ||
16 | void luaA_pushobject (TObject *o); | ||
17 | void luaA_packresults (void); | ||
18 | int luaA_passresults (void); | ||
19 | |||
20 | #endif | ||