aboutsummaryrefslogtreecommitdiff
path: root/lref.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lref.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lref.h b/lref.h
new file mode 100644
index 00000000..60e14e85
--- /dev/null
+++ b/lref.h
@@ -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
12int luaR_ref (const TObject *o, int lock);
13const TObject *luaR_getref (int ref);
14void luaR_invalidaterefs (void);
15
16
17#endif