1993-07-28 17:18:00 +04:00
|
|
|
/*
|
2005-12-27 20:12:00 +03:00
|
|
|
** $Id: lualib.h,v 1.35 2005/08/10 18:06:58 roberto Exp roberto $
|
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
|
|
|
|
2004-05-28 22:35:05 +04:00
|
|
|
/* Key to file-handle type */
|
|
|
|
#define LUA_FILEHANDLE "FILE*"
|
|
|
|
|
|
|
|
|
2002-06-05 21:24:04 +04:00
|
|
|
#define LUA_COLIBNAME "coroutine"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_API int (luaopen_base) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
|
|
|
#define LUA_TABLIBNAME "table"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_API int (luaopen_table) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
|
|
|
#define LUA_IOLIBNAME "io"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_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"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_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"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_API int (luaopen_string) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
|
|
|
#define LUA_MATHLIBNAME "math"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_API int (luaopen_math) (lua_State *L);
|
2002-06-05 21:24:04 +04:00
|
|
|
|
|
|
|
#define LUA_DBLIBNAME "debug"
|
2005-01-10 19:31:30 +03:00
|
|
|
LUALIB_API int (luaopen_debug) (lua_State *L);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2005-04-13 21:24:20 +04:00
|
|
|
#define LUA_LOADLIBNAME "package"
|
2005-08-10 22:06:58 +04:00
|
|
|
LUALIB_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 */
|
2005-04-13 21:24:20 +04:00
|
|
|
LUALIB_API void (luaL_openlibs) (lua_State *L);
|
2004-07-09 18:29:29 +04:00
|
|
|
|
2002-06-18 21:42:52 +04:00
|
|
|
|
2005-12-27 20:12:00 +03:00
|
|
|
|
|
|
|
#ifndef lua_assert
|
|
|
|
#define lua_assert(x) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#endif
|