diff options
Diffstat (limited to 'lapi.h')
-rw-r--r-- | lapi.h | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.h,v 1.7 1999/09/21 16:10:13 roberto Exp roberto $ | 2 | ** $Id: lapi.h,v 1.8 1999/11/04 17:22:26 roberto Exp roberto $ |
3 | ** Auxiliary functions from Lua API | 3 | ** Auxiliary functions from Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -8,14 +8,13 @@ | |||
8 | #define lapi_h | 8 | #define lapi_h |
9 | 9 | ||
10 | 10 | ||
11 | #include "lua.h" | ||
12 | #include "lobject.h" | 11 | #include "lobject.h" |
13 | 12 | ||
14 | 13 | ||
15 | TObject *luaA_Address (lua_Object o); | 14 | TObject *luaA_Address (lua_State *L, lua_Object o); |
16 | void luaA_pushobject (const TObject *o); | 15 | void luaA_pushobject (lua_State *L, const TObject *o); |
17 | GlobalVar *luaA_nextvar (TaggedString *g); | 16 | GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g); |
18 | int luaA_next (const Hash *t, int i); | 17 | int luaA_next (lua_State *L, const Hash *t, int i); |
19 | lua_Object luaA_putObjectOnTop (void); | 18 | lua_Object luaA_putObjectOnTop (lua_State *L); |
20 | 19 | ||
21 | #endif | 20 | #endif |