aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-04-02 20:04:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-04-02 20:04:12 -0300
commit075b7918c3dcc1e8b4d5e7f19ae213b081e01bf2 (patch)
treeae1dd456984f4e7128b2d4a2e2e43e4f23b99d01 /lua.h
parent7c99149a76ce0c7469c9bafec5dfff529f88512c (diff)
downloadlua-075b7918c3dcc1e8b4d5e7f19ae213b081e01bf2.tar.gz
lua-075b7918c3dcc1e8b4d5e7f19ae213b081e01bf2.tar.bz2
lua-075b7918c3dcc1e8b4d5e7f19ae213b081e01bf2.zip
new function "getintmethod"
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index bcc8213e..e6960a36 100644
--- a/lua.h
+++ b/lua.h
@@ -2,7 +2,7 @@
2** LUA - Linguagem para Usuarios de Aplicacao 2** LUA - Linguagem para Usuarios de Aplicacao
3** Grupo de Tecnologia em Computacao Grafica 3** Grupo de Tecnologia em Computacao Grafica
4** TeCGraf - PUC-Rio 4** TeCGraf - PUC-Rio
5** $Id: lua.h,v 3.40 1997/04/02 17:44:18 roberto Exp roberto $ 5** $Id: lua.h,v 3.41 1997/04/02 22:52:42 roberto Exp roberto $
6*/ 6*/
7 7
8 8
@@ -21,6 +21,7 @@ typedef unsigned int lua_Object;
21 21
22lua_Object lua_setfallback (char *event, lua_CFunction fallback); 22lua_Object lua_setfallback (char *event, lua_CFunction fallback);
23void lua_setintmethod (int tag, char *event, lua_CFunction method); 23void lua_setintmethod (int tag, char *event, lua_CFunction method);
24void lua_getintmethod (int tag, char *event); /* out: method */
24void lua_seterrormethod (lua_CFunction method); 25void lua_seterrormethod (lua_CFunction method);
25 26
26int lua_newtag (void); 27int lua_newtag (void);