diff options
Diffstat (limited to '')
-rw-r--r-- | lref.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | ** $Id: $ | ||
3 | ** REF mechanism | ||
4 | ** See Copyright Notice in lua.h | ||
5 | */ | ||
6 | |||
7 | #ifndef lref_h | ||
8 | #define lref_h | ||
9 | |||
10 | #include "lobject.h" | ||
11 | |||
12 | int luaR_ref (const TObject *o, int lock); | ||
13 | const TObject *luaR_getref (int ref); | ||
14 | void luaR_invalidaterefs (void); | ||
15 | |||
16 | |||
17 | #endif | ||