zip.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. /* zip.h
  34.  * Structures and functions for creating ZIP archives.
  35.  */
  36. #ifndef ZIP_H
  37. #define ZIP_H
  38. /* For general information on ZIP formats, you can look at jarfile.h
  39.  * in ns/security/lib/jar.  Or look it up on the web...
  40.  */
  41. /* One entry in a ZIPfile.  This corresponds to one file in the archive.
  42.  * We have to save this information because first all the files go into
  43.  * the archive with local headers; then at the end of the file we have to
  44.  * put the central directory entries for each file.
  45.  */
  46. typedef struct ZIPentry_s {
  47. struct ZipLocal local; /* local header info */
  48. struct ZipCentral central; /* central directory info */
  49. char *filename; /* name of file */
  50. char *comment; /* comment for this file -- optional */
  51. struct ZIPentry_s *next;
  52. } ZIPentry;
  53. /* This structure contains the necessary data for putting a ZIP file
  54.  * together.  Has some overall information and a list of ZIPentrys.
  55.  */
  56. typedef struct ZIPfile_s {
  57. char *filename; /* ZIP file name */
  58. char *comment; /* ZIP file comment -- may be NULL */
  59. PRFileDesc *fp; /* ZIP file pointer */
  60. ZIPentry *list; /* one entry for each file in the archive */
  61. unsigned int time; /* the GMT time of creation, in DOS format */
  62. unsigned int date;  /* the GMT date of creation, in DOS format */
  63. unsigned long central_start; /* starting offset of central directory */
  64. unsigned long central_end; /*index right after the last byte of central*/
  65. } ZIPfile;
  66. /* Open a new ZIP file.  Takes the name of the zip file and an optional
  67.  * comment to be included in the file.  Returns a new ZIPfile structure
  68.  * which is used by JzipAdd and JzipClose
  69.  */
  70. ZIPfile* JzipOpen(char *filename, char *comment);
  71. /* Add a file to a ZIP archive.  Fullname is the path relative to the
  72.  * current directory.  Filename is what the name will be stored as in the
  73.  * archive, and thus what it will be restored as.  zipfile is a structure
  74.  * returned from a previous call to JzipOpen.
  75.  *
  76.  * Non-zero return code means error (although usually the function will
  77.  * call exit() rather than return an error--gotta fix this).
  78.  */
  79. int JzipAdd(char *fullname, char *filename, ZIPfile *zipfile,
  80. int compression_level);
  81. /* Finalize a ZIP archive.  Adds all the footer information to the end of
  82.  * the file and closes it.  Also DELETES THE ZIPFILE STRUCTURE that was
  83.  * passed in.  So you never have to allocate or free a ZIPfile yourself.
  84.  *
  85.  * Non-zero return code means error (although usually the function will
  86.  * call exit() rather than return an error--gotta fix this).
  87.  */
  88. int JzipClose (ZIPfile *zipfile);
  89. #endif /* ZIP_H */