zip.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:9k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* zip.h -- IO for compress .zip files using zlib
  2.    Version 1.01e, February 12th, 2005
  3.    Copyright (C) 1998-2005 Gilles Vollant
  4.    This unzip package allow creates .ZIP file, compatible with PKZip 2.04g
  5.      WinZip, InfoZip tools and compatible.
  6.    Multi volume ZipFile (span) are not supported.
  7.    Encryption compatible with pkzip 2.04g only supported
  8.    Old compressions used by old PKZip 1.x are not supported
  9.   For uncompress .zip file, look at unzip.h
  10.    I WAIT FEEDBACK at mail info@winimage.com
  11.    Visit also http://www.winimage.com/zLibDll/unzip.html for evolution
  12.    Condition of use and distribution are the same than zlib :
  13.   This software is provided 'as-is', without any express or implied
  14.   warranty.  In no event will the authors be held liable for any damages
  15.   arising from the use of this software.
  16.   Permission is granted to anyone to use this software for any purpose,
  17.   including commercial applications, and to alter it and redistribute it
  18.   freely, subject to the following restrictions:
  19.   1. The origin of this software must not be misrepresented; you must not
  20.      claim that you wrote the original software. If you use this software
  21.      in a product, an acknowledgment in the product documentation would be
  22.      appreciated but is not required.
  23.   2. Altered source versions must be plainly marked as such, and must not be
  24.      misrepresented as being the original software.
  25.   3. This notice may not be removed or altered from any source distribution.
  26. */
  27. /* for more info about .ZIP format, see
  28.       http://www.info-zip.org/pub/infozip/doc/appnote-981119-iz.zip
  29.       http://www.info-zip.org/pub/infozip/doc/
  30.    PkWare has also a specification at :
  31.       ftp://ftp.pkware.com/probdesc.zip
  32. */
  33. #ifndef _zip_H
  34. #define _zip_H
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. #ifndef _ZLIB_H
  39. #include "zlib.h"
  40. #endif
  41. #ifndef _ZLIBIOAPI_H
  42. #include "ioapi.h"
  43. #endif
  44. #if defined(STRICTZIP) || defined(STRICTZIPUNZIP)
  45. /* like the STRICT of WIN32, we define a pointer that cannot be converted
  46.     from (void*) without cast */
  47. typedef struct TagzipFile__ { int unused; } zipFile__;
  48. typedef zipFile__ *zipFile;
  49. #else
  50. typedef voidp zipFile;
  51. #endif
  52. #define ZIP_OK                          (0)
  53. #define ZIP_EOF                         (0)
  54. #define ZIP_ERRNO                       (Z_ERRNO)
  55. #define ZIP_PARAMERROR                  (-102)
  56. #define ZIP_BADZIPFILE                  (-103)
  57. #define ZIP_INTERNALERROR               (-104)
  58. #ifndef DEF_MEM_LEVEL
  59. #  if MAX_MEM_LEVEL >= 8
  60. #    define DEF_MEM_LEVEL 8
  61. #  else
  62. #    define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  63. #  endif
  64. #endif
  65. /* default memLevel */
  66. /* tm_zip contain date/time info */
  67. typedef struct tm_zip_s
  68. {
  69.     uInt tm_sec;            /* seconds after the minute - [0,59] */
  70.     uInt tm_min;            /* minutes after the hour - [0,59] */
  71.     uInt tm_hour;           /* hours since midnight - [0,23] */
  72.     uInt tm_mday;           /* day of the month - [1,31] */
  73.     uInt tm_mon;            /* months since January - [0,11] */
  74.     uInt tm_year;           /* years - [1980..2044] */
  75. } tm_zip;
  76. typedef struct
  77. {
  78.     tm_zip      tmz_date;       /* date in understandable format           */
  79.     uLong       dosDate;       /* if dos_date == 0, tmu_date is used      */
  80. /*    uLong       flag;        */   /* general purpose bit flag        2 bytes */
  81.     uLong       internal_fa;    /* internal file attributes        2 bytes */
  82.     uLong       external_fa;    /* external file attributes        4 bytes */
  83. } zip_fileinfo;
  84. typedef const char* zipcharpc;
  85. #define APPEND_STATUS_CREATE        (0)
  86. #define APPEND_STATUS_CREATEAFTER   (1)
  87. #define APPEND_STATUS_ADDINZIP      (2)
  88. extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
  89. /*
  90.   Create a zipfile.
  91.      pathname contain on Windows XP a filename like "c:\zlib\zlib113.zip" or on
  92.        an Unix computer "zlib/zlib113.zip".
  93.      if the file pathname exist and append==APPEND_STATUS_CREATEAFTER, the zip
  94.        will be created at the end of the file.
  95.          (useful if the file contain a self extractor code)
  96.      if the file pathname exist and append==APPEND_STATUS_ADDINZIP, we will
  97.        add files in existing zip (be sure you don't add file that doesn't exist)
  98.      If the zipfile cannot be opened, the return value is NULL.
  99.      Else, the return value is a zipFile Handle, usable with other function
  100.        of this zip package.
  101. */
  102. /* Note : there is no delete function into a zipfile.
  103.    If you want delete file into a zipfile, you must open a zipfile, and create another
  104.    Of couse, you can use RAW reading and writing to copy the file you did not want delte
  105. */
  106. extern zipFile ZEXPORT zipOpen2 OF((const char *pathname,
  107.                                    int append,
  108.                                    zipcharpc* globalcomment,
  109.                                    zlib_filefunc_def* pzlib_filefunc_def));
  110. extern int ZEXPORT zipOpenNewFileInZip OF((zipFile file,
  111.                        const char* filename,
  112.                        const zip_fileinfo* zipfi,
  113.                        const void* extrafield_local,
  114.                        uInt size_extrafield_local,
  115.                        const void* extrafield_global,
  116.                        uInt size_extrafield_global,
  117.                        const char* comment,
  118.                        int method,
  119.                        int level));
  120. /*
  121.   Open a file in the ZIP for writing.
  122.   filename : the filename in zip (if NULL, '-' without quote will be used
  123.   *zipfi contain supplemental information
  124.   if extrafield_local!=NULL and size_extrafield_local>0, extrafield_local
  125.     contains the extrafield data the the local header
  126.   if extrafield_global!=NULL and size_extrafield_global>0, extrafield_global
  127.     contains the extrafield data the the local header
  128.   if comment != NULL, comment contain the comment string
  129.   method contain the compression method (0 for store, Z_DEFLATED for deflate)
  130.   level contain the level of compression (can be Z_DEFAULT_COMPRESSION)
  131. */
  132. extern int ZEXPORT zipOpenNewFileInZip2 OF((zipFile file,
  133.                                             const char* filename,
  134.                                             const zip_fileinfo* zipfi,
  135.                                             const void* extrafield_local,
  136.                                             uInt size_extrafield_local,
  137.                                             const void* extrafield_global,
  138.                                             uInt size_extrafield_global,
  139.                                             const char* comment,
  140.                                             int method,
  141.                                             int level,
  142.                                             int raw));
  143. /*
  144.   Same than zipOpenNewFileInZip, except if raw=1, we write raw file
  145.  */
  146. extern int ZEXPORT zipOpenNewFileInZip3 OF((zipFile file,
  147.                                             const char* filename,
  148.                                             const zip_fileinfo* zipfi,
  149.                                             const void* extrafield_local,
  150.                                             uInt size_extrafield_local,
  151.                                             const void* extrafield_global,
  152.                                             uInt size_extrafield_global,
  153.                                             const char* comment,
  154.                                             int method,
  155.                                             int level,
  156.                                             int raw,
  157.                                             int windowBits,
  158.                                             int memLevel,
  159.                                             int strategy,
  160.                                             const char* password,
  161.                                             uLong crcForCtypting));
  162. /*
  163.   Same than zipOpenNewFileInZip2, except
  164.     windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
  165.     password : crypting password (NULL for no crypting)
  166.     crcForCtypting : crc of file to compress (needed for crypting)
  167.  */
  168. extern int ZEXPORT zipWriteInFileInZip OF((zipFile file,
  169.                        const void* buf,
  170.                        unsigned len));
  171. /*
  172.   Write data in the zipfile
  173. */
  174. extern int ZEXPORT zipCloseFileInZip OF((zipFile file));
  175. /*
  176.   Close the current file in the zipfile
  177. */
  178. extern int ZEXPORT zipCloseFileInZipRaw OF((zipFile file,
  179.                                             uLong uncompressed_size,
  180.                                             uLong crc32));
  181. /*
  182.   Close the current file in the zipfile, for fiel opened with
  183.     parameter raw=1 in zipOpenNewFileInZip2
  184.   uncompressed_size and crc32 are value for the uncompressed size
  185. */
  186. extern int ZEXPORT zipClose OF((zipFile file,
  187.                 const char* global_comment));
  188. /*
  189.   Close the zipfile
  190. */
  191. #ifdef __cplusplus
  192. }
  193. #endif
  194. #endif /* _zip_H */