lua/lualib.h

53 lines
1.1 KiB
C
Raw Normal View History

1993-07-28 17:18:00 +04: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
#include "lua.h"
/* version suffix for environment variable names */
#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
LUAMOD_API int (luaopen_base) (lua_State *L);
2002-06-05 21:24:04 +04:00
#define LUA_COLIBNAME "coroutine"
LUAMOD_API int (luaopen_coroutine) (lua_State *L);
2002-06-05 21:24:04 +04:00
#define LUA_TABLIBNAME "table"
LUAMOD_API int (luaopen_table) (lua_State *L);
2002-06-05 21:24:04 +04:00
#define LUA_IOLIBNAME "io"
LUAMOD_API int (luaopen_io) (lua_State *L);
2002-06-05 21:24:04 +04:00
2004-07-09 19:47:48 +04:00
#define LUA_OSLIBNAME "os"
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"
LUAMOD_API int (luaopen_string) (lua_State *L);
2002-06-05 21:24:04 +04:00
2014-02-06 21:32:33 +04:00
#define LUA_UTF8LIBNAME "utf8"
LUAMOD_API int (luaopen_utf8) (lua_State *L);
2002-06-05 21:24:04 +04:00
#define LUA_MATHLIBNAME "math"
LUAMOD_API int (luaopen_math) (lua_State *L);
2002-06-05 21:24:04 +04:00
#define LUA_DBLIBNAME "debug"
LUAMOD_API int (luaopen_debug) (lua_State *L);
1997-09-16 23:25:59 +04:00
#define LUA_LOADLIBNAME "package"
LUAMOD_API int (luaopen_package) (lua_State *L);
2003-03-17 16:04:58 +03:00
2004-07-09 18:29:29 +04:00
/* open all previous libraries */
2006-09-11 18:07:24 +04:00
LUALIB_API void (luaL_openlibs) (lua_State *L);
2004-07-09 18:29:29 +04:00
1993-07-28 17:18:00 +04:00
#endif