aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-25 12:59:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-25 12:59:42 -0300
commit32bf6c9b277d04a35591ca6420cf1518ebc1a7f3 (patch)
treed0d2cf99489a745e5d54f9a4779629b5095c47f1 /ltm.h
parent9c43d6a24e2612504686f9efbade264e2246bbfb (diff)
downloadlua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.gz
lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.bz2
lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.zip
functions 'traceexec', 'callTM', and 'call_binTM' moved to other
files to make 'lvm.c' a little smaller
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ltm.h b/ltm.h
index f2caa9e6..cce6e6d9 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.11 2011/02/28 17:32:10 roberto Exp roberto $ 2** $Id: ltm.h,v 2.12 2013/04/12 19:07:09 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*/
@@ -54,4 +54,9 @@ LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
54 TMS event); 54 TMS event);
55LUAI_FUNC void luaT_init (lua_State *L); 55LUAI_FUNC void luaT_init (lua_State *L);
56 56
57LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
58 const TValue *p2, TValue *p3, int hasres);
59LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
60 StkId res, TMS event);
61
57#endif 62#endif