diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-12-15 12:59:43 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-12-15 12:59:43 -0200 |
commit | 21cff3015a325e2f965d762de5c733f0cf8525cd (patch) | |
tree | 526a76f7df3abaff9fa77f68c14c6c12c3169857 /lua.h | |
parent | 5ca2709ba055901ba9d658aa2ca51e0682dfdb30 (diff) | |
download | lua-21cff3015a325e2f965d762de5c733f0cf8525cd.tar.gz lua-21cff3015a325e2f965d762de5c733f0cf8525cd.tar.bz2 lua-21cff3015a325e2f965d762de5c733f0cf8525cd.zip |
details (for regularity)
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 | ||
23 | typedef void (*lua_CFunction) (void); | ||
24 | typedef unsigned int lua_Object; | ||
25 | |||
26 | typedef struct lua_State lua_State; | 23 | typedef struct lua_State lua_State; |
27 | extern lua_State *lua_state; | 24 | extern lua_State *lua_state; |
28 | 25 | ||
26 | typedef void (*lua_CFunction) (void); | ||
27 | typedef unsigned int lua_Object; | ||
28 | |||
29 | void lua_open (void); | 29 | void lua_open (void); |
30 | void lua_close (void); | 30 | void lua_close (void); |
31 | lua_State *lua_setstate (lua_State *st); | 31 | lua_State *lua_setstate (lua_State *st); |