summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/ltm.h b/ltm.h
index 21eff396..bd007ee8 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ 2** $Id: ltm.h,v 2.2 2005/03/08 18:00:16 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -42,11 +42,12 @@ typedef enum {
42 42
43#define fasttm(l,et,e) gfasttm(G(l), et, e) 43#define fasttm(l,et,e) gfasttm(G(l), et, e)
44 44
45extern const char *const luaT_typenames[];
45 46
46const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
47const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event);
48void luaT_init (lua_State *L);
49 47
50extern const char *const luaT_typenames[]; 48LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
49LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
50 TMS event);
51LUAI_FUNC void luaT_init (lua_State *L);
51 52
52#endif 53#endif