aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lua.h b/lua.h
index fa2baaf3..993c8294 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.23 1998/06/18 16:51:53 roberto Exp roberto $ 2** $Id: lua.h,v 1.24 1998/08/21 17:43:44 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -20,12 +20,12 @@
20 20
21#define LUA_ANYTAG (-1) 21#define LUA_ANYTAG (-1)
22 22
23typedef void (*lua_CFunction) (void);
24typedef unsigned int lua_Object;
25
26typedef struct lua_State lua_State; 23typedef struct lua_State lua_State;
27extern lua_State *lua_state; 24extern lua_State *lua_state;
28 25
26typedef void (*lua_CFunction) (void);
27typedef unsigned int lua_Object;
28
29void lua_open (void); 29void lua_open (void);
30void lua_close (void); 30void lua_close (void);
31lua_State *lua_setstate (lua_State *st); 31lua_State *lua_setstate (lua_State *st);