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

模拟服务器

开发平台:

C/C++

  1. /*
  2. ** $Id: lundump.h,v 1.21 2000/10/31 16:57:23 lhf Exp $
  3. ** load pre-compiled Lua chunks
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lundump_h
  7. #define lundump_h
  8. #include "lobject.h"
  9. #include "lzio.h"
  10. /* load one chunk */
  11. Proto* luaU_undump (lua_State* L, ZIO* Z);
  12. /* find byte order */
  13. int luaU_endianess (void);
  14. /* definitions for headers of binary files */
  15. #define VERSION 0x40 /* last format change was in 4.0 */
  16. #define VERSION0 0x40 /* last major  change was in 4.0 */
  17. #define ID_CHUNK 27 /* binary files start with ESC... */
  18. #define SIGNATURE "Lua" /* ...followed by this signature */
  19. /* formats for error messages */
  20. #define SOURCE_FMT "<%d:%.99s>"
  21. #define SOURCE tf->lineDefined,tf->source->str
  22. #define IN_FMT " in %p " SOURCE_FMT
  23. #define IN tf,SOURCE
  24. /* a multiple of PI for testing native format */
  25. /* multiplying by 1E8 gives non-trivial integer values */
  26. #define TEST_NUMBER 3.14159265358979323846E8
  27. #endif