lualib.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /*
  2. ** $Id: lualib.h,v 1.1 2004/08/20 02:26:56 JH Exp $
  3. ** Lua standard libraries
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lualib_h
  7. #define lualib_h
  8. #include "lua.h"
  9. #ifndef LUALIB_API
  10. #define LUALIB_API LUA_API
  11. #endif
  12. #define LUA_COLIBNAME "coroutine"
  13. LUALIB_API int luaopen_base (lua_State *L);
  14. #define LUA_TABLIBNAME "table"
  15. LUALIB_API int luaopen_table (lua_State *L);
  16. #define LUA_IOLIBNAME "io"
  17. #define LUA_OSLIBNAME "os"
  18. LUALIB_API int luaopen_io (lua_State *L);
  19. #define LUA_STRLIBNAME "string"
  20. LUALIB_API int luaopen_string (lua_State *L);
  21. #define LUA_MATHLIBNAME "math"
  22. LUALIB_API int luaopen_math (lua_State *L);
  23. #define LUA_DBLIBNAME "debug"
  24. LUALIB_API int luaopen_debug (lua_State *L);
  25. LUALIB_API int luaopen_loadlib (lua_State *L);
  26. /* to help testing the libraries */
  27. #ifndef lua_assert
  28. #define lua_assert(c) /* empty */
  29. #endif
  30. /* compatibility code */
  31. #define lua_baselibopen luaopen_base
  32. #define lua_tablibopen luaopen_table
  33. #define lua_iolibopen luaopen_io
  34. #define lua_strlibopen luaopen_string
  35. #define lua_mathlibopen luaopen_math
  36. #define lua_dblibopen luaopen_debug
  37. #endif