Make the sim buildable with mingw again
[kugel-rb.git] / apps / plugins / lua / lualib.h
blobd4f69fc4af0cc7b0766a11114bb5656efa464371
1 /*
2 ** $Id$
3 ** Lua standard libraries
4 ** See Copyright Notice in lua.h
5 */
8 #ifndef lualib_h
9 #define lualib_h
11 #include "lua.h"
14 /* Key to file-handle type */
15 #define LUA_FILEHANDLE "FILE*"
18 #define LUA_COLIBNAME "coroutine"
19 LUALIB_API int (luaopen_base) (lua_State *L);
21 #define LUA_TABLIBNAME "table"
22 LUALIB_API int (luaopen_table) (lua_State *L);
24 #define LUA_IOLIBNAME "io"
25 LUALIB_API int (luaopen_io) (lua_State *L);
27 #define LUA_OSLIBNAME "os"
28 LUALIB_API int (luaopen_os) (lua_State *L);
30 #define LUA_STRLIBNAME "string"
31 LUALIB_API int (luaopen_string) (lua_State *L);
33 #define LUA_MATHLIBNAME "math"
34 LUALIB_API int (luaopen_math) (lua_State *L);
36 #define LUA_DBLIBNAME "debug"
37 LUALIB_API int (luaopen_debug) (lua_State *L);
39 #define LUA_LOADLIBNAME "package"
40 LUALIB_API int (luaopen_package) (lua_State *L);
42 #define LUA_BITLIBNAME "bit"
43 LUALIB_API int (luaopen_bit) (lua_State *L);
45 /* open all previous libraries */
46 LUALIB_API void (luaL_openlibs) (lua_State *L);
50 #ifndef lua_assert
51 #define lua_assert(x) ((void)0)
52 #endif
55 #endif