aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 623465e1..2aeb9981 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.34 1997/02/20 15:51:14 roberto Exp roberto $ 5** $Id: lua.h,v 3.35 1997/02/26 17:38:41 roberto Unstable roberto $
6*/ 6*/
7 7
8 8
@@ -80,6 +80,7 @@ void lua_unref (int ref);
80lua_Object lua_createtable (void); 80lua_Object lua_createtable (void);
81 81
82 82
83/* =============================================================== */
83/* some useful macros */ 84/* some useful macros */
84 85
85#define lua_refobject(o,l) (lua_pushobject(o), lua_ref(l)) 86#define lua_refobject(o,l) (lua_pushobject(o), lua_ref(l))
@@ -89,7 +90,17 @@ lua_Object lua_createtable (void);
89#define lua_pushuserdata(u) lua_pushusertag(u, 0) 90#define lua_pushuserdata(u) lua_pushusertag(u, 0)
90 91
91 92
93/* =============================================================== */
94/* Auxiliar functions for libraries */
92 95
96void luaL_arg_check(int cond, char *funcname, int numarg, char *extramsg);
97char *luaL_check_string (int numArg, char *funcname);
98char *luaL_opt_string (int numArg, char *def, char *funcname);
99double luaL_check_number (int numArg, char *funcname);
100double luaL_opt_number (int numArg, double def, char *funcname);
101
102
103/* =============================================================== */
93/* for compatibility with old versions. Avoid using these macros */ 104/* for compatibility with old versions. Avoid using these macros */
94 105
95#define lua_type(o) (lua_tag(o)) 106#define lua_type(o) (lua_tag(o))