simplified version of `gc' tag method (only for userdata now).
This commit is contained in:
4
ltable.h
4
ltable.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: ltable.h,v 1.11 1999/02/23 14:57:28 roberto Exp roberto $
|
||||
** $Id: ltable.h,v 1.12 1999/08/16 20:52:00 roberto Exp roberto $
|
||||
** Lua tables (hash)
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@@ -19,7 +19,7 @@
|
||||
#define luaH_move(t,from,to) (luaH_setint(t, to, luaH_getint(t, from)))
|
||||
|
||||
Hash *luaH_new (int nhash);
|
||||
void luaH_free (Hash *frees);
|
||||
void luaH_free (Hash *t);
|
||||
Node *luaH_present (const Hash *t, const TObject *key);
|
||||
void luaH_set (Hash *t, const TObject *ref, const TObject *val);
|
||||
int luaH_pos (const Hash *t, const TObject *r);
|
||||
|
||||
Reference in New Issue
Block a user