aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-15 12:59:43 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-15 12:59:43 -0200
commit21cff3015a325e2f965d762de5c733f0cf8525cd (patch)
tree526a76f7df3abaff9fa77f68c14c6c12c3169857 /lua.h
parent5ca2709ba055901ba9d658aa2ca51e0682dfdb30 (diff)
downloadlua-21cff3015a325e2f965d762de5c733f0cf8525cd.tar.gz
lua-21cff3015a325e2f965d762de5c733f0cf8525cd.tar.bz2
lua-21cff3015a325e2f965d762de5c733f0cf8525cd.zip
details (for regularity)
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);