aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-18 16:39:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-18 16:39:18 -0300
commit91c003dcc2d84094a1098151c343071b19949910 (patch)
tree0a7dc06a59f0c6b03dbd96e16df81208c3430568
parent620d22f2a09ccfe5b7a09ebc11a7b5dca28ac9e4 (diff)
downloadlua-91c003dcc2d84094a1098151c343071b19949910.tar.gz
lua-91c003dcc2d84094a1098151c343071b19949910.tar.bz2
lua-91c003dcc2d84094a1098151c343071b19949910.zip
details
-rw-r--r--lua.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lua.h b/lua.h
index 9720e2fd..a6001be3 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.68 2000/09/12 13:46:59 roberto Exp roberto $ 2** $Id: lua.h,v 1.69 2000/09/14 14:09:31 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -101,9 +101,9 @@ void lua_pushusertag (lua_State *L, void *u, int tag);
101** get functions (Lua -> stack) 101** get functions (Lua -> stack)
102*/ 102*/
103void lua_getglobal (lua_State *L, const char *name); 103void lua_getglobal (lua_State *L, const char *name);
104void lua_gettable (lua_State *L, int tableindex); 104void lua_gettable (lua_State *L, int index);
105void lua_rawget (lua_State *L, int tableindex); 105void lua_rawget (lua_State *L, int index);
106void lua_rawgeti (lua_State *L, int tableindex, int n); 106void lua_rawgeti (lua_State *L, int index, int n);
107void lua_getglobals (lua_State *L); 107void lua_getglobals (lua_State *L);
108void lua_gettagmethod (lua_State *L, int tag, const char *event); 108void lua_gettagmethod (lua_State *L, int tag, const char *event);
109 109
@@ -116,9 +116,9 @@ void lua_newtable (lua_State *L);
116** set functions (stack -> Lua) 116** set functions (stack -> Lua)
117*/ 117*/
118void lua_setglobal (lua_State *L, const char *name); 118void lua_setglobal (lua_State *L, const char *name);
119void lua_settable (lua_State *L, int tableindex); 119void lua_settable (lua_State *L, int index);
120void lua_rawset (lua_State *L, int tableindex); 120void lua_rawset (lua_State *L, int index);
121void lua_rawseti (lua_State *L, int tableindex, int n); 121void lua_rawseti (lua_State *L, int index, int n);
122void lua_setglobals (lua_State *L); 122void lua_setglobals (lua_State *L);
123void lua_settagmethod (lua_State *L, int tag, const char *event); 123void lua_settagmethod (lua_State *L, int tag, const char *event);
124int lua_ref (lua_State *L, int lock); 124int lua_ref (lua_State *L, int lock);
@@ -148,8 +148,8 @@ void lua_unref (lua_State *L, int ref);
148 148
149long lua_collectgarbage (lua_State *L, long limit); 149long lua_collectgarbage (lua_State *L, long limit);
150 150
151int lua_next (lua_State *L, int tableindex); 151int lua_next (lua_State *L, int index);
152int lua_getn (lua_State *L, int tableindex); 152int lua_getn (lua_State *L, int index);
153 153
154void lua_concat (lua_State *L, int n); 154void lua_concat (lua_State *L, int n);
155 155