From 29ede6aa13144ff7b69c57a87be1ee93f57ae896 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 22 Nov 1999 11:12:07 -0200 Subject: first implementation of multiple states (reentrant code). --- lapi.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'lapi.h') diff --git a/lapi.h b/lapi.h index 5d72060d..6db4d16e 100644 --- a/lapi.h +++ b/lapi.h @@ -1,5 +1,5 @@ /* -** $Id: lapi.h,v 1.7 1999/09/21 16:10:13 roberto Exp roberto $ +** $Id: lapi.h,v 1.8 1999/11/04 17:22:26 roberto Exp roberto $ ** Auxiliary functions from Lua API ** See Copyright Notice in lua.h */ @@ -8,14 +8,13 @@ #define lapi_h -#include "lua.h" #include "lobject.h" -TObject *luaA_Address (lua_Object o); -void luaA_pushobject (const TObject *o); -GlobalVar *luaA_nextvar (TaggedString *g); -int luaA_next (const Hash *t, int i); -lua_Object luaA_putObjectOnTop (void); +TObject *luaA_Address (lua_State *L, lua_Object o); +void luaA_pushobject (lua_State *L, const TObject *o); +GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g); +int luaA_next (lua_State *L, const Hash *t, int i); +lua_Object luaA_putObjectOnTop (lua_State *L); #endif -- cgit v1.2.3-55-g6feb