From 9600c60df3e5a971ca642734470901775ef67ff9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Apr 2013 13:07:52 -0300 Subject: functions 'get_equalTM' and 'call_orderTM' moved to other files to make 'lvm.c' smaller --- ltm.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ltm.h') diff --git a/ltm.h b/ltm.h index cce6e6d9..3ff68cc7 100644 --- a/ltm.h +++ b/ltm.h @@ -1,5 +1,5 @@ /* -** $Id: ltm.h,v 2.12 2013/04/12 19:07:09 roberto Exp roberto $ +** $Id: ltm.h,v 2.13 2013/04/25 15:59:42 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -58,5 +58,10 @@ LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, const TValue *p2, TValue *p3, int hasres); LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2, StkId res, TMS event); +LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2); +LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, + const TValue *p2, TMS event); + + #endif -- cgit v1.2.3-55-g6feb