1993-07-28 17:18:00 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: lualib.h $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua standard libraries
|
|
|
|
** See Copyright Notice in lua.h
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1996-05-01 01:13:55 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-12 17:46:59 +04:00
|
|
|
|
2017-01-12 20:14:26 +03:00
|
|
|
/* version suffix for environment variable names */
|
|
|
|
#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
|
|
|
|
|
2024-02-15 17:17:39 +03:00
|
|
|
#define LUA_GLIBK 1
|
2009-11-24 15:05:44 +03:00
|
|
|
LUAMOD_API int (luaopen_base) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_LOADLIBNAME "package"
|
2024-02-15 17:17:39 +03:00
|
|
|
#define LUA_LOADLIBK (LUA_GLIBK << 1)
|
2022-12-07 21:12:52 +03:00
|
|
|
LUAMOD_API int (luaopen_package) (lua_State *L);
|
|
|
|
|
|
|
|
|
2010-06-11 01:30:26 +04:00
|
|
|
#define LUA_COLIBNAME "coroutine"
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_COLIBK (LUA_LOADLIBK << 1)
|
2010-06-11 01:30:26 +04:00
|
|
|
LUAMOD_API int (luaopen_coroutine) (lua_State *L);
|
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_DBLIBNAME "debug"
|
|
|
|
#define LUA_DBLIBK (LUA_COLIBK << 1)
|
|
|
|
LUAMOD_API int (luaopen_debug) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
|
|
|
#define LUA_IOLIBNAME "io"
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_IOLIBK (LUA_DBLIBK << 1)
|
2009-11-24 15:05:44 +03:00
|
|
|
LUAMOD_API int (luaopen_io) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_MATHLIBNAME "math"
|
|
|
|
#define LUA_MATHLIBK (LUA_IOLIBK << 1)
|
|
|
|
LUAMOD_API int (luaopen_math) (lua_State *L);
|
|
|
|
|
2004-07-09 19:47:48 +04:00
|
|
|
#define LUA_OSLIBNAME "os"
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_OSLIBK (LUA_MATHLIBK << 1)
|
2009-11-24 15:05:44 +03:00
|
|
|
LUAMOD_API int (luaopen_os) (lua_State *L);
|
2004-07-09 19:47:48 +04:00
|
|
|
|
2002-06-05 21:24:04 +04:00
|
|
|
#define LUA_STRLIBNAME "string"
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_STRLIBK (LUA_OSLIBK << 1)
|
2009-11-24 15:05:44 +03:00
|
|
|
LUAMOD_API int (luaopen_string) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_TABLIBNAME "table"
|
|
|
|
#define LUA_TABLIBK (LUA_STRLIBK << 1)
|
|
|
|
LUAMOD_API int (luaopen_table) (lua_State *L);
|
|
|
|
|
2014-02-06 21:32:33 +04:00
|
|
|
#define LUA_UTF8LIBNAME "utf8"
|
2022-12-07 21:12:52 +03:00
|
|
|
#define LUA_UTF8LIBK (LUA_TABLIBK << 1)
|
2014-02-06 21:32:33 +04:00
|
|
|
LUAMOD_API int (luaopen_utf8) (lua_State *L);
|
|
|
|
|
2003-03-17 16:04:58 +03:00
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
/* open selected libraries */
|
2024-02-15 17:17:39 +03:00
|
|
|
LUALIB_API void (luaL_openselectedlibs) (lua_State *L, int load, int preload);
|
2003-03-17 16:04:58 +03:00
|
|
|
|
2022-12-07 21:12:52 +03:00
|
|
|
/* open all libraries */
|
2024-02-15 17:17:39 +03:00
|
|
|
#define luaL_openlibs(L) luaL_openselectedlibs(L, ~0, 0)
|
2004-07-09 18:29:29 +04:00
|
|
|
|
2002-06-18 21:42:52 +04:00
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#endif
|