unzip.h
上传用户:maxiaolivb
上传日期:2022-06-07
资源大小:915k
文件大小:12k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /* unzip.h -- IO for uncompress .zip files using zlib
  2. Version 1.01, May 8th, 2004
  3. Copyright (C) 1998-2004 Gilles Vollant
  4. This unzip package allow extract file from .ZIP file, compatible with PKZip 2.04g
  5. WinZip, InfoZip tools and compatible.
  6. Encryption and multi volume ZipFile (span) are not supported.
  7. Old compressions used by old PKZip 1.x are not supported
  8. I WAIT FEEDBACK at mail info@winimage.com
  9. Visit also http://www.winimage.com/zLibDll/unzip.htm for evolution
  10. Condition of use and distribution are the same than zlib :
  11. This software is provided 'as-is', without any express or implied
  12. warranty.  In no event will the authors be held liable for any damages
  13. arising from the use of this software.
  14. Permission is granted to anyone to use this software for any purpose,
  15. including commercial applications, and to alter it and redistribute it
  16. freely, subject to the following restrictions:
  17. 1. The origin of this software must not be misrepresented; you must not
  18. claim that you wrote the original software. If you use this software
  19. in a product, an acknowledgment in the product documentation would be
  20. appreciated but is not required.
  21. 2. Altered source versions must be plainly marked as such, and must not be
  22. misrepresented as being the original software.
  23. 3. This notice may not be removed or altered from any source distribution.
  24.  */
  25. /* for more info about .ZIP format, see
  26. http://www.info-zip.org/pub/infozip/doc/appnote-981119-iz.zip
  27. http://www.info-zip.org/pub/infozip/doc/
  28. PkWare has also a specification at :
  29. ftp://ftp.pkware.com/probdesc.zip
  30.  */
  31. #ifndef _unz_H
  32.   #define _unz_H
  33.   #ifdef __cplusplus
  34.     extern "C"
  35.     {
  36.     #endif
  37.     #ifndef _ZLIB_H
  38.       #include "zlib.h"
  39.     #endif
  40.     #ifndef _ZLIBIOAPI_H
  41.       #include "ioapi.h"
  42.     #endif
  43.     #if defined(STRICTUNZIP) || defined(STRICTZIPUNZIP)
  44.       /* like the STRICT of WIN32, we define a pointer that cannot be converted
  45.       from (void*) without cast */
  46.       typedef struct TagunzFile__
  47.       {
  48.         int unused;
  49.       } unzFile__;
  50.       typedef unzFile__ *unzFile;
  51.     #else
  52.       typedef void *unzFile;
  53.     #endif
  54.     #define UNZ_OK                          (0)
  55.     #define UNZ_END_OF_LIST_OF_FILE         (-100)
  56.     #define UNZ_ERRNO                       (Z_ERRNO)
  57.     #define UNZ_EOF                         (0)
  58.     #define UNZ_PARAMERROR                  (-102)
  59.     #define UNZ_BADZIPFILE                  (-103)
  60.     #define UNZ_INTERNALERROR               (-104)
  61.     #define UNZ_CRCERROR                    (-105)
  62.     /* tm_unz contain date/time info */
  63.     typedef struct tm_unz_s
  64.     {
  65.       DWORD tm_sec; /* seconds after the minute - [0,59] */
  66.       DWORD tm_min; /* minutes after the hour - [0,59] */
  67.       DWORD tm_hour; /* hours since midnight - [0,23] */
  68.       DWORD tm_mday; /* day of the month - [1,31] */
  69.       DWORD tm_mon; /* months since January - [0,11] */
  70.       DWORD tm_year; /* years - [1980..2044] */
  71.     } tm_unz;
  72.     /* unz_global_info structure contain global data about the ZIPfile
  73.     These data comes from the end of central dir */
  74.     typedef struct unz_global_info_s
  75.     {
  76.       DWORD number_entry; /* total number of entries in
  77.       the central dir on this disk */
  78.       DWORD size_comment; /* size of the global comment of the zipfile */
  79.     } unz_global_info;
  80.     /* unz_file_info contain information about a file in the zipfile */
  81.     typedef struct unz_file_info_s
  82.     {
  83.       DWORD version; /* version made by                 2 bytes */
  84.       DWORD version_needed; /* version needed to extract       2 bytes */
  85.       DWORD flag; /* general purpose bit flag        2 bytes */
  86.       DWORD compression_method; /* compression method              2 bytes */
  87.       DWORD dosDate; /* last mod file date in Dos fmt   4 bytes */
  88.       DWORD crc; /* crc-32                          4 bytes */
  89.       DWORD compressed_size; /* compressed size                 4 bytes */
  90.       DWORD uncompressed_size; /* uncompressed size               4 bytes */
  91.       DWORD size_filename; /* filename length                 2 bytes */
  92.       DWORD size_file_extra; /* extra field length              2 bytes */
  93.       DWORD size_file_comment; /* file comment length             2 bytes */
  94.       DWORD disk_num_start; /* disk number start               2 bytes */
  95.       DWORD internal_fa; /* internal file attributes        2 bytes */
  96.       DWORD external_fa; /* external file attributes        4 bytes */
  97.       tm_unz tmu_date;
  98.     } unz_file_info;
  99.     extern int ZEXPORT unzStringFileNameCompare OF((const char *fileName1, const char *fileName2, int iCaseSensitivity));
  100.     /*
  101.     Compare two filename (fileName1,fileName2).
  102.     If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
  103.     If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
  104.     or strcasecmp)
  105.     If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
  106.     (like 1 on Unix, 2 on Windows)
  107.      */
  108.     extern unzFile ZEXPORT unzOpen(const char *path);
  109.     /*
  110.     Open a Zip file. path contain the full pathname (by example,
  111.     on a Windows XP computer "c:\zlib\zlib113.zip" or on an Unix computer
  112.     "zlib/zlib113.zip".
  113.     If the zipfile cannot be opened (file don't exist or in not valid), the
  114.     return value is NULL.
  115.     Else, the return value is a unzFile Handle, usable with other function
  116.     of this unzip package.
  117.      */
  118.     extern unzFile ZEXPORT unzOpen2(const char *path, zlib_filefunc_def *pzlib_filefunc_def);
  119.     /*
  120.     Open a Zip file, like unzOpen, but provide a set of file low level API
  121.     for read/write the zip file (see ioapi.h)
  122.      */
  123.     extern int ZEXPORT unzClose(unzFile file);
  124.     /*
  125.     Close a ZipFile opened with unzipOpen.
  126.     If there is files inside the .Zip opened with unzOpenCurrentFile (see later),
  127.     these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
  128.     return UNZ_OK if there is no problem. */
  129.     extern int ZEXPORT unzGetGlobalInfo(unzFile file, unz_global_info *pglobal_info);
  130.     /*
  131.     Write info about the ZipFile in the *pglobal_info structure.
  132.     No preparation of the structure is needed
  133.     return UNZ_OK if there is no problem. */
  134.     extern int ZEXPORT unzGetGlobalComment(unzFile file, char *szComment, DWORD uSizeBuf);
  135.     /*
  136.     Get the global comment string of the ZipFile, in the szComment buffer.
  137.     uSizeBuf is the size of the szComment buffer.
  138.     return the number of byte copied or an error code <0
  139.      */
  140.     /***************************************************************************/
  141.     /* Unzip package allow you browse the directory of the zipfile */
  142.     extern int ZEXPORT unzGoToFirstFile(unzFile file);
  143.     /*
  144.     Set the current file of the zipfile to the first file.
  145.     return UNZ_OK if there is no problem
  146.      */
  147.     extern int ZEXPORT unzGoToNextFile(unzFile file);
  148.     /*
  149.     Set the current file of the zipfile to the next file.
  150.     return UNZ_OK if there is no problem
  151.     return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
  152.      */
  153.     extern int ZEXPORT unzLocateFile(unzFile file, const char *szFileName, int iCaseSensitivity);
  154.     /*
  155.     Try locate the file szFileName in the zipfile.
  156.     For the iCaseSensitivity signification, see unzStringFileNameCompare
  157.     return value :
  158.     UNZ_OK if the file is found. It becomes the current file.
  159.     UNZ_END_OF_LIST_OF_FILE if the file is not found
  160.      */
  161.     extern int ZEXPORT unzGetCurrentFileID(unzFile file, DWORD *file_num, DWORD *pos_in_central_dir);
  162.     extern int ZEXPORT unzGoToFileID(unzFile file, DWORD file_num, DWORD pos_in_central_dir);
  163.     /* ****************************************** */
  164.     /* Ryan supplied functions */
  165.     /* unz_file_info contain information about a file in the zipfile */
  166.     typedef struct unz_file_pos_s
  167.     {
  168.       DWORD pos_in_zip_directory; /* offset in zip file directory */
  169.       DWORD num_of_file; /* # of file */
  170.     } unz_file_pos;
  171.     extern int ZEXPORT unzGetFilePos(unzFile file, unz_file_pos *file_pos);
  172.     extern int ZEXPORT unzGoToFilePos(unzFile file, unz_file_pos *file_pos);
  173.     /* ****************************************** */
  174.     extern int ZEXPORT unzGetCurrentFileInfo(unzFile file, unz_file_info *pfile_info, char *szFileName, DWORD fileNameBufferSize, void *extraField, DWORD extraFieldBufferSize, char *szComment, DWORD commentBufferSize);
  175.     /*
  176.     Get Info about the current file
  177.     if pfile_info!=NULL, the *pfile_info structure will contain somes info about
  178.     the current file
  179.     if szFileName!=NULL, the filemane string will be copied in szFileName
  180.     (fileNameBufferSize is the size of the buffer)
  181.     if extraField!=NULL, the extra field information will be copied in extraField
  182.     (extraFieldBufferSize is the size of the buffer).
  183.     This is the Central-header version of the extra field
  184.     if szComment!=NULL, the comment string of the file will be copied in szComment
  185.     (commentBufferSize is the size of the buffer)
  186.      */
  187.     /***************************************************************************/
  188.     /* for reading the content of the current zipfile, you can open it, read data
  189.     from it, and close it (you can close it before reading all the file)
  190.      */
  191.     extern int ZEXPORT unzOpenCurrentFile(unzFile file);
  192.     /*
  193.     Open for reading data the current file in the zipfile.
  194.     If there is no error, the return value is UNZ_OK.
  195.      */
  196.     extern int ZEXPORT unzOpenCurrentFilePassword(unzFile file, const char *password);
  197.     /*
  198.     Open for reading data the current file in the zipfile.
  199.     password is a crypting password
  200.     If there is no error, the return value is UNZ_OK.
  201.      */
  202.     extern int ZEXPORT unzOpenCurrentFile2(unzFile file, int *method, int *level, int raw);
  203.     /*
  204.     Same than unzOpenCurrentFile, but open for read raw the file (not uncompress)
  205.     if raw==1
  206.      *method will receive method of compression, *level will receive level of
  207.     compression
  208.     note : you can set level parameter as NULL (if you did not want known level,
  209.     but you CANNOT set method parameter as NULL
  210.      */
  211.     extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int *method, int *level, int raw, const char *password);
  212.     /*
  213.     Same than unzOpenCurrentFile, but open for read raw the file (not uncompress)
  214.     if raw==1
  215.      *method will receive method of compression, *level will receive level of
  216.     compression
  217.     note : you can set level parameter as NULL (if you did not want known level,
  218.     but you CANNOT set method parameter as NULL
  219.      */
  220.     extern int ZEXPORT unzCloseCurrentFile(unzFile file);
  221.     /*
  222.     Close the file in zip opened with unzOpenCurrentFile
  223.     Return UNZ_CRCERROR if all the file was read but the CRC is not good
  224.      */
  225.     extern int ZEXPORT unzReadCurrentFile(unzFile file, void *buf, DWORD len);
  226.     /*
  227.     Read bytes from the current file (opened by unzOpenCurrentFile)
  228.     buf contain buffer where data must be copied
  229.     len the size of buf.
  230.     return the number of byte copied if somes bytes are copied
  231.     return 0 if the end of file was reached
  232.     return <0 with error code if there is an error
  233.     (UNZ_ERRNO for IO error, or zLib error for uncompress error)
  234.      */
  235.     extern z_off_t ZEXPORT unztell(unzFile file);
  236.     /*
  237.     Give the current position in uncompressed data
  238.      */
  239.     extern int ZEXPORT unzeof(unzFile file);
  240.     /*
  241.     return 1 if the end of file was reached, 0 elsewhere
  242.      */
  243.     extern int ZEXPORT unzGetLocalExtrafield(unzFile file, void *buf, DWORD len);
  244.     /*
  245.     Read extra field from the current file (opened by unzOpenCurrentFile)
  246.     This is the local-header version of the extra field (sometimes, there is
  247.     more info in the local-header version than in the central-header)
  248.     if buf==NULL, it return the size of the local extra field
  249.     if buf!=NULL, len is the size of the buffer, the extra header is copied in
  250.     buf.
  251.     the return value is the number of bytes copied in buf, or (if <0)
  252.     the error code
  253.      */
  254.     /***************************************************************************/
  255.     /* Get the current file offset */
  256.     extern DWORD ZEXPORT unzGetOffset(unzFile file);
  257.     /* Set the current file offset */
  258.     extern int ZEXPORT unzSetOffset(unzFile file, DWORD pos);
  259.     #ifdef __cplusplus
  260.     }
  261.   #endif
  262. #endif /* _unz_H */