1994-11-07 07:20:56 -08:00
|
|
|
/*
|
1997-03-24 09:13:22 -08:00
|
|
|
** $Id: fallback.h,v 1.16 1997/03/20 19:20:43 roberto Exp roberto $
|
1994-11-07 07:20:56 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef fallback_h
|
|
|
|
#define fallback_h
|
|
|
|
|
1996-04-22 11:00:37 -07:00
|
|
|
#include "lua.h"
|
1994-11-08 11:56:39 -08:00
|
|
|
#include "opcode.h"
|
|
|
|
|
1997-03-20 11:20:43 -08:00
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER IM"
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
IM_GETTABLE = 0,
|
|
|
|
IM_SETTABLE,
|
|
|
|
IM_INDEX,
|
|
|
|
IM_ADD,
|
|
|
|
IM_SUB,
|
|
|
|
IM_MUL,
|
|
|
|
IM_DIV,
|
|
|
|
IM_POW,
|
|
|
|
IM_UNM,
|
|
|
|
IM_LT,
|
|
|
|
IM_LE,
|
|
|
|
IM_GT,
|
|
|
|
IM_GE,
|
|
|
|
IM_CONCAT,
|
|
|
|
IM_GC,
|
|
|
|
IM_FUNCTION
|
|
|
|
} IMS;
|
|
|
|
|
|
|
|
#define IM_N 16
|
|
|
|
|
|
|
|
extern char *luaI_eventname[];
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER GIM"
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
GIM_ERROR = 0,
|
|
|
|
GIM_GETGLOBAL,
|
|
|
|
GIM_SETGLOBAL
|
|
|
|
} IMGS;
|
|
|
|
|
1997-03-19 11:41:10 -08:00
|
|
|
#define GIM_N 3
|
1994-11-10 09:11:52 -08:00
|
|
|
|
|
|
|
void luaI_setfallback (void);
|
1996-04-25 07:10:00 -07:00
|
|
|
int luaI_ref (Object *object, int lock);
|
|
|
|
Object *luaI_getref (int ref);
|
1995-10-17 04:52:38 -07:00
|
|
|
void luaI_travlock (int (*fn)(Object *));
|
1996-04-22 11:00:37 -07:00
|
|
|
void luaI_invalidaterefs (void);
|
1995-10-17 04:52:38 -07:00
|
|
|
char *luaI_travfallbacks (int (*fn)(Object *));
|
1994-11-07 07:20:56 -08:00
|
|
|
|
1997-03-20 11:20:43 -08:00
|
|
|
void luaI_type (void);
|
1997-02-26 09:38:41 -08:00
|
|
|
void luaI_settag (int tag, Object *o);
|
1997-03-19 11:41:10 -08:00
|
|
|
lua_Type luaI_typetag (int tag);
|
1997-03-20 11:20:43 -08:00
|
|
|
Object *luaI_getim (int tag, IMS event);
|
1997-03-24 09:13:22 -08:00
|
|
|
#define luaI_getimbyObj(o,e) (luaI_getim(luaI_tag(o),(e)))
|
1997-03-20 11:20:43 -08:00
|
|
|
Object *luaI_getgim (IMGS event);
|
1997-02-26 09:38:41 -08:00
|
|
|
int luaI_tag (Object *o);
|
|
|
|
void luaI_setintmethod (void);
|
1997-03-19 11:41:10 -08:00
|
|
|
void luaI_setglobalmethod (void);
|
|
|
|
void luaI_initfallbacks (void);
|
1997-02-26 09:38:41 -08:00
|
|
|
|
1994-11-07 07:20:56 -08:00
|
|
|
#endif
|
|
|
|
|