diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
commit | 8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch) | |
tree | 4ad0b914b84005b706fb6c9af302132d789b133a /ltm.h | |
parent | 8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff) | |
download | lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.gz lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.bz2 lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.zip |
added LUAI_FUNC to functions not in the API
Diffstat (limited to '')
-rw-r--r-- | ltm.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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 | ||
45 | extern const char *const luaT_typenames[]; | ||
45 | 46 | ||
46 | const TValue *luaT_gettm (Table *events, TMS event, TString *ename); | ||
47 | const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event); | ||
48 | void luaT_init (lua_State *L); | ||
49 | 47 | ||
50 | extern const char *const luaT_typenames[]; | 48 | LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename); |
49 | LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, | ||
50 | TMS event); | ||
51 | LUAI_FUNC void luaT_init (lua_State *L); | ||
51 | 52 | ||
52 | #endif | 53 | #endif |