aboutsummaryrefslogtreecommitdiff
path: root/lapi.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-22 11:12:07 -0200
commit29ede6aa13144ff7b69c57a87be1ee93f57ae896 (patch)
treeadcfb5dcff7db55481cd675349e23dec0e63c939 /lapi.h
parent951897c09319ae5474a4b86bb7d615136577caa0 (diff)
downloadlua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.gz
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.tar.bz2
lua-29ede6aa13144ff7b69c57a87be1ee93f57ae896.zip
first implementation of multiple states (reentrant code).
Diffstat (limited to 'lapi.h')
-rw-r--r--lapi.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/lapi.h b/lapi.h
index 5d72060d..6db4d16e 100644
--- a/lapi.h
+++ b/lapi.h
@@ -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
15TObject *luaA_Address (lua_Object o); 14TObject *luaA_Address (lua_State *L, lua_Object o);
16void luaA_pushobject (const TObject *o); 15void luaA_pushobject (lua_State *L, const TObject *o);
17GlobalVar *luaA_nextvar (TaggedString *g); 16GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g);
18int luaA_next (const Hash *t, int i); 17int luaA_next (lua_State *L, const Hash *t, int i);
19lua_Object luaA_putObjectOnTop (void); 18lua_Object luaA_putObjectOnTop (lua_State *L);
20 19
21#endif 20#endif