diff options
Diffstat (limited to 'lapi.h')
-rw-r--r-- | lapi.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.h,v 1.9 1999/11/22 13:12:07 roberto Exp roberto $ | 2 | ** $Id: lapi.h,v 1.10 1999/12/02 16:24:45 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 | */ |
@@ -11,9 +11,14 @@ | |||
11 | #include "lobject.h" | 11 | #include "lobject.h" |
12 | 12 | ||
13 | 13 | ||
14 | lua_Type luaA_normalizedtype (const TObject *o); | ||
15 | void luaA_setnormalized (TObject *d, const TObject *s); | ||
16 | void luaA_checkCparams (lua_State *L, int nParams); | ||
17 | const TObject *luaA_protovalue (const TObject *o); | ||
14 | void luaA_pushobject (lua_State *L, const TObject *o); | 18 | void luaA_pushobject (lua_State *L, const TObject *o); |
15 | GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g); | 19 | GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g); |
16 | int luaA_next (lua_State *L, const Hash *t, int i); | 20 | int luaA_next (lua_State *L, const Hash *t, int i); |
21 | lua_Object luaA_putluaObject (lua_State *L, const TObject *o); | ||
17 | lua_Object luaA_putObjectOnTop (lua_State *L); | 22 | lua_Object luaA_putObjectOnTop (lua_State *L); |
18 | 23 | ||
19 | #endif | 24 | #endif |