1993-07-28 21:18:00 +08:00
|
|
|
/*
|
2011-12-08 20:11:37 +08:00
|
|
|
** $Id: lualib.h,v 1.42 2011/05/25 14:12:28 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Lua standard libraries
|
|
|
|
** See Copyright Notice in lua.h
|
1993-07-28 21:18:00 +08:00
|
|
|
*/
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1993-07-28 21:18:00 +08:00
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1996-05-01 05:13:55 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-12 21:46:59 +08:00
|
|
|
|
2004-05-29 02:35:05 +08:00
|
|
|
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_base) (lua_State *L);
|
2002-06-06 01:24:04 +08:00
|
|
|
|
2010-06-11 05:30:26 +08:00
|
|
|
#define LUA_COLIBNAME "coroutine"
|
|
|
|
LUAMOD_API int (luaopen_coroutine) (lua_State *L);
|
|
|
|
|
2002-06-06 01:24:04 +08:00
|
|
|
#define LUA_TABLIBNAME "table"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_table) (lua_State *L);
|
2002-06-06 01:24:04 +08:00
|
|
|
|
|
|
|
#define LUA_IOLIBNAME "io"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_io) (lua_State *L);
|
2002-06-06 01:24:04 +08:00
|
|
|
|
2004-07-09 23:47:48 +08:00
|
|
|
#define LUA_OSLIBNAME "os"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_os) (lua_State *L);
|
2004-07-09 23:47:48 +08:00
|
|
|
|
2002-06-06 01:24:04 +08:00
|
|
|
#define LUA_STRLIBNAME "string"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_string) (lua_State *L);
|
2002-06-06 01:24:04 +08:00
|
|
|
|
2010-10-25 22:32:36 +08:00
|
|
|
#define LUA_BITLIBNAME "bit32"
|
|
|
|
LUAMOD_API int (luaopen_bit32) (lua_State *L);
|
2009-07-02 00:16:40 +08:00
|
|
|
|
2002-06-06 01:24:04 +08:00
|
|
|
#define LUA_MATHLIBNAME "math"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_math) (lua_State *L);
|
2002-06-06 01:24:04 +08:00
|
|
|
|
|
|
|
#define LUA_DBLIBNAME "debug"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_debug) (lua_State *L);
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2005-04-14 01:24:20 +08:00
|
|
|
#define LUA_LOADLIBNAME "package"
|
2009-11-24 20:05:44 +08:00
|
|
|
LUAMOD_API int (luaopen_package) (lua_State *L);
|
2003-03-17 21:04:58 +08:00
|
|
|
|
|
|
|
|
2004-07-09 22:29:29 +08:00
|
|
|
/* open all previous libraries */
|
2006-09-11 22:07:24 +08:00
|
|
|
LUALIB_API void (luaL_openlibs) (lua_State *L);
|
2004-07-09 22:29:29 +08:00
|
|
|
|
2002-06-19 01:42:52 +08:00
|
|
|
|
2005-12-28 01:12:00 +08:00
|
|
|
|
2011-05-25 22:12:28 +08:00
|
|
|
#if !defined(lua_assert)
|
2005-12-28 01:12:00 +08:00
|
|
|
#define lua_assert(x) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1993-07-28 21:18:00 +08:00
|
|
|
#endif
|