diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-25 11:10:00 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-25 11:10:00 -0300 |
commit | bced00ab9efcdc68982b5e3787f277b86ea3cde8 (patch) | |
tree | 85901ada4296ac533b2169b922885f7fc9d9e415 /fallback.h | |
parent | 25116a306598b8f30606552a4570f752ac141397 (diff) | |
download | lua-bced00ab9efcdc68982b5e3787f277b86ea3cde8.tar.gz lua-bced00ab9efcdc68982b5e3787f277b86ea3cde8.tar.bz2 lua-bced00ab9efcdc68982b5e3787f277b86ea3cde8.zip |
lua_Reference is int, so say so.
Diffstat (limited to 'fallback.h')
-rw-r--r-- | fallback.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: fallback.h,v 1.11 1996/01/30 15:25:23 roberto Exp roberto $ | 2 | ** $Id: fallback.h,v 1.12 1996/04/22 18:00:37 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef fallback_h | 5 | #ifndef fallback_h |
@@ -27,8 +27,8 @@ extern struct FB { | |||
27 | #define FB_GETGLOBAL 9 | 27 | #define FB_GETGLOBAL 9 |
28 | 28 | ||
29 | void luaI_setfallback (void); | 29 | void luaI_setfallback (void); |
30 | lua_Reference luaI_ref (Object *object, int lock); | 30 | int luaI_ref (Object *object, int lock); |
31 | Object *luaI_getref (lua_Reference ref); | 31 | Object *luaI_getref (int ref); |
32 | void luaI_travlock (int (*fn)(Object *)); | 32 | void luaI_travlock (int (*fn)(Object *)); |
33 | void luaI_invalidaterefs (void); | 33 | void luaI_invalidaterefs (void); |
34 | char *luaI_travfallbacks (int (*fn)(Object *)); | 34 | char *luaI_travfallbacks (int (*fn)(Object *)); |