diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
commit | ea169d20835aa7d2a42641decc5b5d802047afca (patch) | |
tree | 130c69567896b6b5b61f49c2ff0c053ad5602551 /lapi.h | |
parent | c31aa863ac29fad5bb3f44c4e08640f877b65f25 (diff) | |
download | lua-ea169d20835aa7d2a42641decc5b5d802047afca.tar.gz lua-ea169d20835aa7d2a42641decc5b5d802047afca.tar.bz2 lua-ea169d20835aa7d2a42641decc5b5d802047afca.zip |
auxiliar functions from Lua API
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 | ||