diff options
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.63 2000/08/31 14:08:27 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.64 2000/08/31 20:23:40 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 |
@@ -83,6 +83,7 @@ const char *lua_tostring (lua_State *L, int index); | |||
83 | size_t lua_strlen (lua_State *L, int index); | 83 | size_t lua_strlen (lua_State *L, int index); |
84 | lua_CFunction lua_tocfunction (lua_State *L, int index); | 84 | lua_CFunction lua_tocfunction (lua_State *L, int index); |
85 | void *lua_touserdata (lua_State *L, int index); | 85 | void *lua_touserdata (lua_State *L, int index); |
86 | const void *lua_topointer (lua_State *L, int index); | ||
86 | 87 | ||
87 | 88 | ||
88 | /* | 89 | /* |
@@ -145,6 +146,7 @@ void lua_unref (lua_State *L, int ref); | |||
145 | long lua_collectgarbage (lua_State *L, long limit); | 146 | long lua_collectgarbage (lua_State *L, long limit); |
146 | 147 | ||
147 | int lua_next (lua_State *L); | 148 | int lua_next (lua_State *L); |
149 | int lua_getn (lua_State *L, int index); | ||
148 | 150 | ||
149 | 151 | ||
150 | 152 | ||