| ** $Id: ltm.h,v 2.6.1.1 2007/12/27 13:02:25 roberto Exp $ |
| ** See Copyright Notice in lua.h |
| * WARNING: if you change the order of this enumeration, |
| TM_EQ, /* last tag method with `fast' access */ |
| TM_N /* number of elements in the enum */ |
| #define gfasttm(g,et,e) ((et) == NULL ? NULL : \ |
| ((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e])) |
| #define fasttm(l,et,e) gfasttm(G(l), et, e) |
| LUAI_DATA const char *const luaT_typenames[]; |
| LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename); |
| LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, |
| LUAI_FUNC void luaT_init (lua_State *L); |