diff options
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 2.23 2017/05/08 15:57:23 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 2.24 2017/05/13 12:57:20 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 | */ |
@@ -63,14 +63,16 @@ LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, | |||
63 | LUAI_FUNC void luaT_init (lua_State *L); | 63 | LUAI_FUNC void luaT_init (lua_State *L); |
64 | 64 | ||
65 | LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, | 65 | LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, |
66 | const TValue *p2, TValue *p3, int hasres); | 66 | const TValue *p2, const TValue *p3); |
67 | LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f, | ||
68 | const TValue *p1, const TValue *p2, StkId p3); | ||
67 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, | 69 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, |
68 | StkId res, TMS event); | 70 | StkId res, TMS event); |
69 | LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, | 71 | LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, |
70 | const TValue *p2, TMS event); | 72 | const TValue *p2, TMS event); |
71 | 73 | ||
72 | LUAI_FUNC void luaT_adjustvarargs (lua_State *L, Proto *p, int actual); | 74 | LUAI_FUNC void luaT_adjustvarargs (lua_State *L, Proto *p, int actual); |
73 | LUAI_FUNC void luaT_getvarargs (lua_State *L, StkId t, StkId where, | 75 | LUAI_FUNC void luaT_getvarargs (lua_State *L, TValue *t, StkId where, |
74 | int wanted); | 76 | int wanted); |
75 | 77 | ||
76 | 78 | ||