diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-18 09:31:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-18 09:31:39 -0300 |
commit | 81cdbabf095e23bf9fb5cef842967acb499b7bcc (patch) | |
tree | 65eb80c7fd94f09831ec837f90a9a8601098b06d | |
parent | 40cfb0691e233e164efee27873454cf457255a47 (diff) | |
download | lua-81cdbabf095e23bf9fb5cef842967acb499b7bcc.tar.gz lua-81cdbabf095e23bf9fb5cef842967acb499b7bcc.tar.bz2 lua-81cdbabf095e23bf9fb5cef842967acb499b7bcc.zip |
detail (change place of a prototype)
-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 | /* |