diff options
author | Fabio Mascarenhas <mascarenhas@lambda-2.local> | 2010-03-20 15:18:42 -0300 |
---|---|---|
committer | Fabio Mascarenhas <mascarenhas@lambda-2.local> | 2010-03-20 15:21:49 -0300 |
commit | 4558c76a2bb640790cb3d9e70e84569d193abe06 (patch) | |
tree | a861bb521348912ab41ccb45796089362770c704 /win32/lua5.1/include/lualib.h | |
parent | ebda93002751a729e9e6f24ac22c3a2ff5e6b09a (diff) | |
download | luarocks-4558c76a2bb640790cb3d9e70e84569d193abe06.tar.gz luarocks-4558c76a2bb640790cb3d9e70e84569d193abe06.tar.bz2 luarocks-4558c76a2bb640790cb3d9e70e84569d193abe06.zip |
adding files needed to make Windows distribution, and licenses for them
Diffstat (limited to 'win32/lua5.1/include/lualib.h')
-rw-r--r-- | win32/lua5.1/include/lualib.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/win32/lua5.1/include/lualib.h b/win32/lua5.1/include/lualib.h new file mode 100644 index 00000000..469417f6 --- /dev/null +++ b/win32/lua5.1/include/lualib.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | ** $Id: lualib.h,v 1.36.1.1 2007/12/27 13:02:25 roberto Exp $ | ||
3 | ** Lua standard libraries | ||
4 | ** See Copyright Notice in lua.h | ||
5 | */ | ||
6 | |||
7 | |||
8 | #ifndef lualib_h | ||
9 | #define lualib_h | ||
10 | |||
11 | #include "lua.h" | ||
12 | |||
13 | |||
14 | /* Key to file-handle type */ | ||
15 | #define LUA_FILEHANDLE "FILE*" | ||
16 | |||
17 | |||
18 | #define LUA_COLIBNAME "coroutine" | ||
19 | LUALIB_API int (luaopen_base) (lua_State *L); | ||
20 | |||
21 | #define LUA_TABLIBNAME "table" | ||
22 | LUALIB_API int (luaopen_table) (lua_State *L); | ||
23 | |||
24 | #define LUA_IOLIBNAME "io" | ||
25 | LUALIB_API int (luaopen_io) (lua_State *L); | ||
26 | |||
27 | #define LUA_OSLIBNAME "os" | ||
28 | LUALIB_API int (luaopen_os) (lua_State *L); | ||
29 | |||
30 | #define LUA_STRLIBNAME "string" | ||
31 | LUALIB_API int (luaopen_string) (lua_State *L); | ||
32 | |||
33 | #define LUA_MATHLIBNAME "math" | ||
34 | LUALIB_API int (luaopen_math) (lua_State *L); | ||
35 | |||
36 | #define LUA_DBLIBNAME "debug" | ||
37 | LUALIB_API int (luaopen_debug) (lua_State *L); | ||
38 | |||
39 | #define LUA_LOADLIBNAME "package" | ||
40 | LUALIB_API int (luaopen_package) (lua_State *L); | ||
41 | |||
42 | |||
43 | /* open all previous libraries */ | ||
44 | LUALIB_API void (luaL_openlibs) (lua_State *L); | ||
45 | |||
46 | |||
47 | |||
48 | #ifndef lua_assert | ||
49 | #define lua_assert(x) ((void)0) | ||
50 | #endif | ||
51 | |||
52 | |||
53 | #endif | ||