diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-05-28 15:35:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-05-28 15:35:05 -0300 |
commit | 0733c83b8ce08234aa4b9b4889bae029dcfb8414 (patch) | |
tree | 5c909ec06993c42a64d31a35eeed3aea5b5a751d /lualib.h | |
parent | e9844a4f1d8a4cb9642c00db552a40f65f3748b8 (diff) | |
download | lua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.tar.gz lua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.tar.bz2 lua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.zip |
other modules may need FILEHANDLE definition
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.28 2003/03/18 12:24:26 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.29 2004/03/24 15:46:49 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -16,6 +16,10 @@ | |||
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | 18 | ||
19 | /* Key to file-handle type */ | ||
20 | #define LUA_FILEHANDLE "FILE*" | ||
21 | |||
22 | |||
19 | #define LUA_COLIBNAME "coroutine" | 23 | #define LUA_COLIBNAME "coroutine" |
20 | LUALIB_API int luaopen_base (lua_State *L); | 24 | LUALIB_API int luaopen_base (lua_State *L); |
21 | 25 | ||