aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
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 ea61f0c3..d8fb9047 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.167 2002/11/25 17:50:14 roberto Exp roberto $ 2** $Id: lua.h,v 1.168 2002/11/26 12:53:29 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -186,6 +186,7 @@ LUA_API int lua_setglobals (lua_State *L, int idx);
186*/ 186*/
187LUA_API void lua_call (lua_State *L, int nargs, int nresults); 187LUA_API void lua_call (lua_State *L, int nargs, int nresults);
188LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc); 188LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc);
189LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud);
189LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *dt, 190LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *dt,
190 const char *chunkname); 191 const char *chunkname);
191 192