lua/ltm.h

48 lines
813 B
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
2002-05-20 12:51:06 -07:00
** $Id: ltm.h,v 1.31 2002/01/09 21:50:35 roberto Exp roberto $
1997-09-16 12:25:59 -07:00
** Tag methods
** See Copyright Notice in lua.h
*/
#ifndef ltm_h
#define ltm_h
#include "lobject.h"
/*
* WARNING: if you change the order of this enumeration,
* grep "ORDER TM"
1997-09-16 12:25:59 -07:00
*/
typedef enum {
TM_GETTABLE = 0,
TM_SETTABLE,
TM_INDEX,
2001-12-05 12:15:18 -08:00
TM_GC,
2002-01-09 13:50:35 -08:00
TM_WEAKMODE,
TM_ADD,
TM_SUB,
TM_MUL,
TM_DIV,
TM_POW,
TM_UNM,
TM_LT,
TM_CONCAT,
2001-12-05 12:15:18 -08:00
TM_CALL,
TM_N /* number of elements in the enum */
} TMS;
2001-01-24 08:20:54 -08:00
2001-12-05 12:15:18 -08:00
#define fasttm(l,et,e) \
2002-05-20 12:51:06 -07:00
(((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, G(l)->tmname[e]))
1997-09-16 12:25:59 -07:00
2001-12-05 12:15:18 -08:00
const TObject *luaT_gettm (Table *events, TMS event, TString *ename);
const TObject *luaT_gettmbyobj (lua_State *L, const TObject *o, TMS event);
void luaT_init (lua_State *L);
1997-09-16 12:25:59 -07:00
2001-12-05 12:15:18 -08:00
extern const char *const luaT_typenames[];
1997-09-16 12:25:59 -07:00
#endif