summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
commit8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch)
tree4ad0b914b84005b706fb6c9af302132d789b133a /ltm.h
parent8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff)
downloadlua-github-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.gz
added LUAI_FUNC to functions not in the API
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 @@
/*
-** $Id: ltm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
+** $Id: ltm.h,v 2.2 2005/03/08 18:00:16 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -42,11 +42,12 @@ typedef enum {
#define fasttm(l,et,e) gfasttm(G(l), et, e)
+extern const char *const luaT_typenames[];
-const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
-const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event);
-void luaT_init (lua_State *L);
-extern 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,
+ TMS event);
+LUAI_FUNC void luaT_init (lua_State *L);
#endif