mirror of
https://github.com/lua/lua.git
synced 2025-01-28 06:03:00 +08:00
18 lines
243 B
C
18 lines
243 B
C
/*
|
|
** $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
|