From 32bf6c9b277d04a35591ca6420cf1518ebc1a7f3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Apr 2013 12:59:42 -0300 Subject: functions 'traceexec', 'callTM', and 'call_binTM' moved to other files to make 'lvm.c' a little smaller --- ltm.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ltm.h') diff --git a/ltm.h b/ltm.h index f2caa9e6..cce6e6d9 100644 --- a/ltm.h +++ b/ltm.h @@ -1,5 +1,5 @@ /* -** $Id: ltm.h,v 2.11 2011/02/28 17:32:10 roberto Exp roberto $ +** $Id: ltm.h,v 2.12 2013/04/12 19:07:09 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -54,4 +54,9 @@ LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event); LUAI_FUNC void luaT_init (lua_State *L); +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); + #endif -- cgit v1.2.3-55-g6feb