ScummVM API documentation
lgc.h
1 /*
2 ** Garbage Collector
3 ** See Copyright Notice in lua.h
4 */
5 
6 #ifndef GRIM_LGC_H
7 #define GRIM_LGC_H
8 
9 
10 #include "lobject.h"
11 
12 namespace Grim {
13 
14 void luaC_checkGC();
15 TObject* luaC_getref(int32 r);
16 int32 luaC_ref(TObject *o, int32 lock);
17 void luaC_hashcallIM(Hash *l);
18 void luaC_strcallIM(TaggedString *l);
19 
20 } // end of namespace Grim
21 
22 #endif
Definition: actor.h:33