lundump.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /*
  2. ** $Id: lundump.h,v 1.40 2005/11/11 14:03:13 lhf Exp $
  3. ** load precompiled 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; from lundump.c */
  11. LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
  12. /* make header; from lundump.c */
  13. LUAI_FUNC void luaU_header (char* h);
  14. /* dump one chunk; from ldump.c */
  15. LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
  16. #ifdef luac_c
  17. /* print one chunk; from print.c */
  18. LUAI_FUNC void luaU_print (const Proto* f, int full);
  19. #endif
  20. /* for header of binary files -- this is Lua 5.1 */
  21. #define LUAC_VERSION 0x51
  22. /* for header of binary files -- this is the official format */
  23. #define LUAC_FORMAT 0
  24. /* size of header of binary files */
  25. #define LUAC_HEADERSIZE 12
  26. #endif