aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 91d80c02..4fa70b57 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: lua.h,v 1.2 1997/10/24 17:17:24 roberto Exp roberto $
3** LUA - An Extensible Extension Language 3** LUA - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -53,9 +53,12 @@
53typedef void (*lua_CFunction) (void); 53typedef void (*lua_CFunction) (void);
54typedef unsigned int lua_Object; 54typedef unsigned int lua_Object;
55 55
56lua_Object lua_settagmethod (int tag, char *event); /* In: luaM_new method */ 56
57void lua_open (void);
58
59lua_Object lua_settagmethod (int tag, char *event); /* In: new method */
57lua_Object lua_gettagmethod (int tag, char *event); 60lua_Object lua_gettagmethod (int tag, char *event);
58lua_Object lua_seterrormethod (void); /* In: luaM_new method */ 61lua_Object lua_seterrormethod (void); /* In: new method */
59 62
60int lua_newtag (void); 63int lua_newtag (void);
61void lua_settag (int tag); /* In: object */ 64void lua_settag (int tag); /* In: object */