lref.h 243 B

1234567891011121314151617
  1. /*
  2. ** $Id: $
  3. ** REF mechanism
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lref_h
  7. #define lref_h
  8. #include "lobject.h"
  9. int luaR_ref (const TObject *o, int lock);
  10. const TObject *luaR_getref (int ref);
  11. void luaR_invalidaterefs (void);
  12. #endif