From bced00ab9efcdc68982b5e3787f277b86ea3cde8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Apr 1996 11:10:00 -0300 Subject: lua_Reference is int, so say so. --- lua.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 5738a619..bb65cf5c 100644 --- a/lua.h +++ b/lua.h @@ -2,7 +2,7 @@ ** LUA - Linguagem para Usuarios de Aplicacao ** Grupo de Tecnologia em Computacao Grafica ** TeCGraf - PUC-Rio -** $Id: lua.h,v 3.25 1996/03/21 21:30:29 roberto Exp roberto $ +** $Id: lua.h,v 3.26 1996/04/22 18:00:37 roberto Exp roberto $ */ @@ -81,12 +81,10 @@ lua_Object lua_getsubscript (void); int lua_type (lua_Object object); -typedef int lua_Reference; - -lua_Reference lua_ref (int lock); -lua_Object lua_getref (lua_Reference ref); -void lua_pushref (lua_Reference ref); -void lua_unref (lua_Reference ref); +int lua_ref (int lock); +lua_Object lua_getref (int ref); +void lua_pushref (int ref); +void lua_unref (int ref); lua_Object lua_createtable (void); -- cgit v1.2.3-55-g6feb