aboutsummaryrefslogtreecommitdiff
path: root/lref.h
blob: 60e14e857a3a6e88e04f918061c213bf32264b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
** $Id: $
** REF mechanism
** See Copyright Notice in lua.h
*/

#ifndef lref_h
#define lref_h

#include "lobject.h"

int luaR_ref (const TObject *o, int lock);
const TObject *luaR_getref (int ref);
void luaR_invalidaterefs (void);


#endif