zip.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* zip.h -- IO for compress .zip files using zlib 
  2.    Version 0.15 alpha, Mar 19th, 1998,
  3.    Copyright (C) 1998 Gilles Vollant
  4.    This unzip package allow creates .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.   For uncompress .zip file, look at unzip.h
  9.    THIS IS AN ALPHA VERSION. AT THIS STAGE OF DEVELOPPEMENT, SOMES API OR STRUCTURE
  10.    CAN CHANGE IN FUTURE VERSION !!
  11.    I WAIT FEEDBACK at mail info@winimage.com
  12.    Visit also http://www.winimage.com/zLibDll/zip.htm for evolution
  13.    Condition of use and distribution are the same than zlib :
  14.   This software is provided 'as-is', without any express or implied
  15.   warranty.  In no event will the authors be held liable for any damages
  16.   arising from the use of this software.
  17.   Permission is granted to anyone to use this software for any purpose,
  18.   including commercial applications, and to alter it and redistribute it
  19.   freely, subject to the following restrictions:
  20.   1. The origin of this software must not be misrepresented; you must not
  21.      claim that you wrote the original software. If you use this software
  22.      in a product, an acknowledgment in the product documentation would be
  23.      appreciated but is not required.
  24.   2. Altered source versions must be plainly marked as such, and must not be
  25.      misrepresented as being the original software.
  26.   3. This notice may not be removed or altered from any source distribution.
  27. */
  28. /* for more info about .ZIP format, see 
  29.       ftp://ftp.cdrom.com/pub/infozip/doc/appnote-970311-iz.zip
  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. #if defined(STRICTZIP) || defined(STRICTZIPUNZIP)
  42. /* like the STRICT of WIN32, we define a pointer that cannot be converted
  43.     from (void*) without cast */
  44. typedef struct TagzipFile__ { int unused; } zipFile__; 
  45. typedef zipFile__ *zipFile;
  46. #else
  47. typedef voidp zipFile;
  48. #endif
  49. #define ZIP_OK                                  (0)
  50. #define ZIP_ERRNO               (Z_ERRNO)
  51. #define ZIP_PARAMERROR                  (-102)
  52. #define ZIP_INTERNALERROR               (-104)
  53. /* tm_zip contain date/time info */
  54. typedef struct tm_zip_s 
  55. {
  56. uInt tm_sec;            /* seconds after the minute - [0,59] */
  57. uInt tm_min;            /* minutes after the hour - [0,59] */
  58. uInt tm_hour;           /* hours since midnight - [0,23] */
  59. uInt tm_mday;           /* day of the month - [1,31] */
  60. uInt tm_mon;            /* months since January - [0,11] */
  61. uInt tm_year;           /* years - [1980..2044] */
  62. } tm_zip;
  63. typedef struct
  64. {
  65. tm_zip      tmz_date;       /* date in understandable format           */
  66.     uLong       dosDate;       /* if dos_date == 0, tmu_date is used      */
  67. /*    uLong       flag;        */   /* general purpose bit flag        2 bytes */
  68.     uLong       internal_fa;    /* internal file attributes        2 bytes */
  69.     uLong       external_fa;    /* external file attributes        4 bytes */
  70. } zip_fileinfo;
  71. extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
  72. /*
  73.   Create a zipfile.
  74.  pathname contain on Windows NT a filename like "c:\zlib\zlib111.zip" or on
  75.    an Unix computer "zlib/zlib111.zip".
  76.  if the file pathname exist and append=1, the zip will be created at the end
  77.    of the file. (useful if the file contain a self extractor code)
  78.  If the zipfile cannot be opened, the return value is NULL.
  79.      Else, the return value is a zipFile Handle, usable with other function
  80.    of this zip package.
  81. */
  82. extern int ZEXPORT zipOpenNewFileInZip OF((zipFile file,
  83.    const char* filename,
  84.    const zip_fileinfo* zipfi,
  85.    const void* extrafield_local,
  86.    uInt size_extrafield_local,
  87.    const void* extrafield_global,
  88.    uInt size_extrafield_global,
  89.    const char* comment,
  90.    int method,
  91.    int level));
  92. /*
  93.   Open a file in the ZIP for writing.
  94.   filename : the filename in zip (if NULL, '-' without quote will be used
  95.   *zipfi contain supplemental information
  96.   if extrafield_local!=NULL and size_extrafield_local>0, extrafield_local
  97.     contains the extrafield data the the local header
  98.   if extrafield_global!=NULL and size_extrafield_global>0, extrafield_global
  99.     contains the extrafield data the the local header
  100.   if comment != NULL, comment contain the comment string
  101.   method contain the compression method (0 for store, Z_DEFLATED for deflate)
  102.   level contain the level of compression (can be Z_DEFAULT_COMPRESSION)
  103. */
  104. extern int ZEXPORT zipWriteInFileInZip OF((zipFile file,
  105.    const voidp buf,
  106.    unsigned len));
  107. /*
  108.   Write data in the zipfile
  109. */
  110. extern int ZEXPORT zipCloseFileInZip OF((zipFile file));
  111. /*
  112.   Close the current file in the zipfile
  113. */
  114. extern int ZEXPORT zipClose OF((zipFile file,
  115. const char* global_comment));
  116. /*
  117.   Close the zipfile
  118. */
  119. #ifdef __cplusplus
  120. }
  121. #endif
  122. #endif /* _zip_H */