diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-09-20 14:55:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-09-20 14:55:10 -0300 |
commit | d8f1cca16ea9a682127bb328c8bdfbfb4ded3412 (patch) | |
tree | a43ca86e36a0d27ccda6c4599988cc2c69b50e34 /lua.h | |
parent | bf96d3fdd9ee477faa774734453c27535a36b16f (diff) | |
download | lua-d8f1cca16ea9a682127bb328c8bdfbfb4ded3412.tar.gz lua-d8f1cca16ea9a682127bb328c8bdfbfb4ded3412.tar.bz2 lua-d8f1cca16ea9a682127bb328c8bdfbfb4ded3412.zip |
new function 'lua_setallocf'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.211 2005/08/12 13:34:15 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.212 2005/08/25 20:02:08 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -239,6 +239,7 @@ LUA_API int (lua_next) (lua_State *L, int idx); | |||
239 | LUA_API void (lua_concat) (lua_State *L, int n); | 239 | LUA_API void (lua_concat) (lua_State *L, int n); |
240 | 240 | ||
241 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); | 241 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); |
242 | LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud); | ||
242 | 243 | ||
243 | 244 | ||
244 | 245 | ||