lua/fallback.h

36 lines
644 B
C
Raw Normal View History

/*
1996-01-30 07:25:23 -08:00
** $Id: fallback.h,v 1.10 1995/10/17 11:52:38 roberto Exp roberto $
*/
#ifndef fallback_h
#define fallback_h
1994-11-08 11:56:39 -08:00
#include "opcode.h"
extern struct FB {
char *kind;
Object function;
int nParams;
int nResults;
} luaI_fallBacks[];
#define FB_ERROR 0
#define FB_INDEX 1
#define FB_GETTABLE 2
#define FB_ARITH 3
#define FB_ORDER 4
#define FB_CONCAT 5
#define FB_SETTABLE 6
#define FB_GC 7
#define FB_FUNCTION 8
1996-01-30 07:25:23 -08:00
#define FB_GETGLOBAL 9
void luaI_setfallback (void);
int luaI_lock (Object *object);
1994-11-08 11:56:39 -08:00
Object *luaI_getlocked (int ref);
void luaI_travlock (int (*fn)(Object *));
char *luaI_travfallbacks (int (*fn)(Object *));
#endif