From 91f34fb05caa9590cd19a986e865a93361b1c398 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 8 May 2000 16:37:10 -0300 Subject: lua.h should not use names without prefix lua_ (`TObject', for instance) --- lua.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 58d5b27d..92f50bb6 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.48 2000/04/17 19:23:12 roberto Exp roberto $ +** $Id: lua.h,v 1.49 2000/05/08 19:32:53 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -25,7 +25,7 @@ typedef struct lua_State lua_State; typedef void (*lua_CFunction) (lua_State *L); -typedef struct TObject *lua_Object; +typedef struct lua_TObject *lua_Object; #define LUA_NOOBJECT ((lua_Object)0) -- cgit v1.2.3-55-g6feb