lualib.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2. ** $Id: lualib.h,v 1.14 2000/10/27 16:15:53 roberto 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. #ifdef __cplusplus
  10. extern "C" {
  11. #endif 
  12. #define LUA_ALERT               "_ALERT"
  13. LUALIB_API void lua_baselibopen (lua_State *L);
  14. LUALIB_API void lua_iolibopen (lua_State *L);
  15. LUALIB_API void lua_strlibopen (lua_State *L);
  16. LUALIB_API void lua_mathlibopen (lua_State *L);
  17. LUALIB_API void lua_dblibopen (lua_State *L);
  18. /* Auxiliary functions (private) */
  19. const char *luaI_classend (lua_State *L, const char *p);
  20. int luaI_singlematch (int c, const char *p, const char *ep);
  21. #ifdef __cplusplus
  22. }
  23. #endif 
  24. #endif