Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.   Copyright (c) 1990-2005 Info-ZIP.  All rights reserved.
  3.  
  4.   See the accompanying file LICENSE, version 2003-May-08 or later
  5.   (the contents of which are also included in unzip.h) for terms of use.
  6.   If, for some reason, all these files are missing, the Info-ZIP license
  7.   also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
  8. */
  9. /* This is a dummy zip.h to allow the source files shared with Zip
  10.    (crypt.c, crc32.c, ttyio.c, win32/win32i64.c) to compile for UnZip.
  11.    (In case you are looking for the Info-ZIP license, please follow
  12.    the pointers above.)  */
  13.  
  14. #ifndef __zip_h   /* don't include more than once */
  15. #define __zip_h
  16.  
  17. #define UNZIP_INTERNAL
  18. #include "unzip.h"
  19.  
  20. #define local static
  21.  
  22. #define ZE_MEM         PK_MEM
  23. #define ziperr(c, h)   return
  24.  
  25. #endif /* !__zip_h */
  26.