diff options
author | pixel <pixel> | 2003-12-14 21:13:32 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-12-14 21:13:32 +0000 |
commit | 187cf873560ca736900db3bb6c8c10d1f75724c4 (patch) | |
tree | 2dabb12d484e35b8072d789c7bbf96f09c0e525d /include/BLua.h | |
parent | a174ecb1bd01b4c7b28693ec08eda5acd436867d (diff) |
Trying to fix garbage collector (failed...)
Diffstat (limited to 'include/BLua.h')
-rw-r--r-- | include/BLua.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/BLua.h b/include/BLua.h index 53eb1bb..911b17c 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: BLua.h,v 1.9 2003-12-11 16:53:27 pixel Exp $ */ +/* $Id: BLua.h,v 1.10 2003-12-14 21:13:32 pixel Exp $ */ #ifndef __BLUA_H__ #define __BLUA_H__ @@ -50,6 +50,7 @@ class Lua : public Base { void push(lua_CFunction, int = 0); void pop(int = 1); void newtable(); + void * newuser(size_t); void settable(int = -3, bool raw = false); void gettable(int = -2, bool raw = false); void setvar(); |