diff options
-rw-r--r-- | lua.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.173 2003/02/24 16:54:20 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.174 2003/02/27 11:52:30 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
@@ -167,6 +167,7 @@ LUA_API void lua_gettable (lua_State *L, int idx); | |||
167 | LUA_API void lua_rawget (lua_State *L, int idx); | 167 | LUA_API void lua_rawget (lua_State *L, int idx); |
168 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n); | 168 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n); |
169 | LUA_API void lua_newtable (lua_State *L); | 169 | LUA_API void lua_newtable (lua_State *L); |
170 | LUA_API void *lua_newuserdata (lua_State *L, size_t sz); | ||
170 | LUA_API int lua_getmetatable (lua_State *L, int objindex); | 171 | LUA_API int lua_getmetatable (lua_State *L, int objindex); |
171 | LUA_API void lua_getfenv (lua_State *L, int idx); | 172 | LUA_API void lua_getfenv (lua_State *L, int idx); |
172 | 173 | ||
@@ -218,8 +219,6 @@ LUA_API int lua_next (lua_State *L, int idx); | |||
218 | 219 | ||
219 | LUA_API void lua_concat (lua_State *L, int n); | 220 | LUA_API void lua_concat (lua_State *L, int n); |
220 | 221 | ||
221 | LUA_API void *lua_newuserdata (lua_State *L, size_t sz); | ||
222 | |||
223 | 222 | ||
224 | 223 | ||
225 | /* | 224 | /* |