summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1995-01-27 15:19:06 -0200
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1995-01-27 15:19:06 -0200
commitf83db16cabdd3e83986e5f3a74c822baa688649e (patch)
treeb40adab5c505bc7b78f6d175ce03b72f5a99dca3 /lua.h
parent6e0e9935ec6ca877d17aa0fbc125a0c4a4e4b01b (diff)
downloadlua-f83db16cabdd3e83986e5f3a74c822baa688649e.tar.gz
lua-f83db16cabdd3e83986e5f3a74c822baa688649e.tar.bz2
lua-f83db16cabdd3e83986e5f3a74c822baa688649e.zip
new API function lua_pushlocked
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 0f1eb179..5529de9d 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.14 1994/12/28 12:55:47 roberto Exp celes $ 5** $Id: lua.h,v 3.15 1995/01/18 20:15:05 celes Exp celes $
6*/ 6*/
7 7
8 8
@@ -67,6 +67,7 @@ int lua_type (lua_Object object);
67 67
68int lua_lock (void); 68int lua_lock (void);
69lua_Object lua_getlocked (int ref); 69lua_Object lua_getlocked (int ref);
70void lua_pushlocked (int ref);
70void lua_unlock (int ref); 71void lua_unlock (int ref);
71 72
72lua_Object lua_createtable (void); 73lua_Object lua_createtable (void);