lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 81cdbabf095e23bf9fb5cef842967acb499b7bcc
parent 40cfb0691e233e164efee27873454cf457255a47
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 18 Mar 2003 09:31:17 -0300

detail (change place of a prototype)

Diffstat:
Mlua.h | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lua.h b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.173 2003/02/24 16:54:20 roberto Exp roberto $ +** $Id: lua.h,v 1.174 2003/02/27 11:52:30 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil ** http://www.lua.org mailto:info@lua.org @@ -167,6 +167,7 @@ LUA_API void lua_gettable (lua_State *L, int idx); LUA_API void lua_rawget (lua_State *L, int idx); LUA_API void lua_rawgeti (lua_State *L, int idx, int n); LUA_API void lua_newtable (lua_State *L); +LUA_API void *lua_newuserdata (lua_State *L, size_t sz); LUA_API int lua_getmetatable (lua_State *L, int objindex); LUA_API void lua_getfenv (lua_State *L, int idx); @@ -218,8 +219,6 @@ LUA_API int lua_next (lua_State *L, int idx); LUA_API void lua_concat (lua_State *L, int n); -LUA_API void *lua_newuserdata (lua_State *L, size_t sz); - /*