diff options
author | Li Jin <dragon-fly@qq.com> | 2021-04-21 09:36:25 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-04-21 09:36:25 +0800 |
commit | b7bdf7d5d36825a1a750a74641f6d374dec5d67a (patch) | |
tree | 6b27eb6590e07c07f378305c51d0f5e0779faa83 /src/3rdParty/lua/lualib.h | |
parent | b86e5af605a170a3559df0165eac3cb6b665dc49 (diff) | |
download | yuescript-b7bdf7d5d36825a1a750a74641f6d374dec5d67a.tar.gz yuescript-b7bdf7d5d36825a1a750a74641f6d374dec5d67a.tar.bz2 yuescript-b7bdf7d5d36825a1a750a74641f6d374dec5d67a.zip |
adjust some folder levels.
Diffstat (limited to 'src/3rdParty/lua/lualib.h')
-rw-r--r-- | src/3rdParty/lua/lualib.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/3rdParty/lua/lualib.h b/src/3rdParty/lua/lualib.h new file mode 100644 index 0000000..2625529 --- /dev/null +++ b/src/3rdParty/lua/lualib.h | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | ** $Id: lualib.h $ | ||
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 | /* version suffix for environment variable names */ | ||
15 | #define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR | ||
16 | |||
17 | |||
18 | LUAMOD_API int (luaopen_base) (lua_State *L); | ||
19 | |||
20 | #define LUA_COLIBNAME "coroutine" | ||
21 | LUAMOD_API int (luaopen_coroutine) (lua_State *L); | ||
22 | |||
23 | #define LUA_TABLIBNAME "table" | ||
24 | LUAMOD_API int (luaopen_table) (lua_State *L); | ||
25 | |||
26 | #define LUA_IOLIBNAME "io" | ||
27 | LUAMOD_API int (luaopen_io) (lua_State *L); | ||
28 | |||
29 | #define LUA_OSLIBNAME "os" | ||
30 | LUAMOD_API int (luaopen_os) (lua_State *L); | ||
31 | |||
32 | #define LUA_STRLIBNAME "string" | ||
33 | LUAMOD_API int (luaopen_string) (lua_State *L); | ||
34 | |||
35 | #define LUA_UTF8LIBNAME "utf8" | ||
36 | LUAMOD_API int (luaopen_utf8) (lua_State *L); | ||
37 | |||
38 | #define LUA_MATHLIBNAME "math" | ||
39 | LUAMOD_API int (luaopen_math) (lua_State *L); | ||
40 | |||
41 | #define LUA_DBLIBNAME "debug" | ||
42 | LUAMOD_API int (luaopen_debug) (lua_State *L); | ||
43 | |||
44 | #define LUA_LOADLIBNAME "package" | ||
45 | LUAMOD_API int (luaopen_package) (lua_State *L); | ||
46 | |||
47 | |||
48 | /* open all previous libraries */ | ||
49 | LUALIB_API void (luaL_openlibs) (lua_State *L); | ||
50 | |||
51 | |||
52 | #endif | ||