aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index b0bd7811..56adb3b3 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: $ 5** $Id: lua.h,v 1.1 1993/12/17 18:41:19 celes Exp celes $
6*/ 6*/
7 7
8 8
@@ -20,6 +20,7 @@ void lua_error (char *s);
20int lua_dofile (char *filename); 20int lua_dofile (char *filename);
21int lua_dostring (char *string); 21int lua_dostring (char *string);
22int lua_call (char *functionname, int nparam); 22int lua_call (char *functionname, int nparam);
23int lua_callfunction (lua_Object function, int nparam);
23 24
24lua_Object lua_getparam (int number); 25lua_Object lua_getparam (int number);
25float lua_getnumber (lua_Object object); 26float lua_getnumber (lua_Object object);
@@ -48,6 +49,7 @@ int lua_isnil (lua_Object object);
48int lua_isnumber (lua_Object object); 49int lua_isnumber (lua_Object object);
49int lua_isstring (lua_Object object); 50int lua_isstring (lua_Object object);
50int lua_istable (lua_Object object); 51int lua_istable (lua_Object object);
52int lua_isfunction (lua_Object object);
51int lua_iscfunction (lua_Object object); 53int lua_iscfunction (lua_Object object);
52int lua_isuserdata (lua_Object object); 54int lua_isuserdata (lua_Object object);
53 55