+ contrib/hbziparch/readme.txt
+ contrib/hbziparch/zlib
+ contrib/hbziparch/zlib/deflate.h
+ contrib/hbziparch/zlib/zlib.h
* contrib/hbziparch/common.mak
* contrib/hbziparch/hbcomprs.c
* contrib/hbziparch/hbziparc.c
* contrib/hbziparch/hbzipcom.cpp
* contrib/hbziparch/hbzipnew.cpp
* contrib/hbziparch/License.txt
* contrib/hbziparch/make_gcc.sh
* contrib/hbziparch/make_vc.bat
* contrib/hbziparch/Makefile
* contrib/hbziparch/resource.h
* contrib/hbziparch/stdafx.h
* contrib/hbziparch/ZipExport.h
* contrib/hbziparch/ZipPathComponent_lnx.cpp
* contrib/hbziparch/ZipPathComponent_win.cpp
* contrib/hbziparch/ZipPlatform_lnx.cpp
* contrib/hbziparch/ZipPlatform_win.cpp
* contrib/hbziparch/ZipString.cpp
- contrib/hbziparch/stdafx.cpp
- contrib/hbziparch/zipabstractfile.h
- contrib/hbziparch/ziparchive.cpp
- contrib/hbziparch/ziparchive.h
- contrib/hbziparch/zipautobuffer.cpp
- contrib/hbziparch/zipautobuffer.h
- contrib/hbziparch/zipbaseexception.h
- contrib/hbziparch/zipcentraldir.cpp
- contrib/hbziparch/zipcentraldir.h
- contrib/hbziparch/zipcollections.h
- contrib/hbziparch/zipcompatibility.cpp
- contrib/hbziparch/zipcompatibility.h
- contrib/hbziparch/zipexception.cpp
- contrib/hbziparch/zipexception.h
- contrib/hbziparch/zipfile.cpp
- contrib/hbziparch/zipfile.h
- contrib/hbziparch/zipfileheader.cpp
- contrib/hbziparch/zipfileheader.h
- contrib/hbziparch/zipfilemapping.h
- contrib/hbziparch/zipinternalinfo.h
- contrib/hbziparch/zipmemfile.cpp
- contrib/hbziparch/zipmemfile.h
- contrib/hbziparch/zippathcomponent.h
- contrib/hbziparch/zipplatform.h
- contrib/hbziparch/zipplatformcomm.cpp
- contrib/hbziparch/zipstorage.cpp
- contrib/hbziparch/zipstorage.h
- contrib/hbziparch/zipstring.h
* ZipArchive 2.x -> ZipArchive 3.2.0 (latest)
Only one minor modification (reported to author)
Plus integrated ZLIB replaced with hbzlib.
; Pass 1
85 lines
2.1 KiB
C
85 lines
2.1 KiB
C
////////////////////////////////////////////////////////////////////////////////
|
|
// This source file is part of the ZipArchive library source distribution and
|
|
// is Copyrighted 2000 - 2007 by Artpol Software - Tadeusz Dracz
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// For the licensing details refer to the License.txt file.
|
|
//
|
|
// Web Site: http://www.artpol-software.com
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
* \file stdafx.h
|
|
* Contains global definitions.
|
|
*
|
|
*/
|
|
|
|
#if !defined(ZIPARCHIVE_STDAFX_DOT_H)
|
|
#define ZIPARCHIVE_STDAFX_DOT_H
|
|
|
|
#include "_features.h"
|
|
#include "_platform.h"
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
// uncomment to disable compiling standard error messages into the library
|
|
#define ZIP_ENABLE_ERROR_DESCRIPTION
|
|
|
|
|
|
|
|
#if _MSC_VER < 1300 && !defined __BORLANDC__ && !defined (__GNUC__)
|
|
#define ZIPINLINE inline
|
|
#else
|
|
#define ZIPINLINE
|
|
#endif
|
|
|
|
#ifdef ZIP_ARCHIVE_STL
|
|
#include "std_stl.h"
|
|
#else
|
|
#include "std_mfc.h"
|
|
#endif
|
|
|
|
#ifdef TRACE
|
|
#if _MSC_VER >= 1300
|
|
#define ZIPTRACE(f) TRACE(f,__FILE__,__LINE__)
|
|
#else
|
|
#define ZIPTRACE(f) TRACE(_T(f))
|
|
#endif
|
|
#else
|
|
#define ZIPTRACE(f)
|
|
#define NOZIPTRACE
|
|
#endif
|
|
|
|
#ifdef _ZIP_STRICT_U16
|
|
#define ZIP_INDEX_TYPE WORD
|
|
#define ZIP_VOLUME_TYPE WORD
|
|
#else
|
|
#define ZIP_INDEX_TYPE int
|
|
#define ZIP_VOLUME_TYPE int
|
|
#endif
|
|
|
|
#define ZIP_SIZE_TYPE DWORD
|
|
#define ZIP_ZLIB_TYPE int
|
|
|
|
#if !defined(_INTPTR_T_DEFINED) && !defined(__GNUC__)
|
|
/* NOTE: Harbour modification to make it compile with BCC55. [vszakats] */
|
|
#if __BORLANDC__ > 0x551
|
|
#include <stdint.h>
|
|
#elif _MSC_VER <= 1200 || !defined _MSC_VER
|
|
typedef long intptr_t;
|
|
#endif
|
|
#endif
|
|
|
|
#define ZIP_FILE_INDEX_NOT_FOUND ZIP_INDEX_TYPE(-1)
|
|
#define ZIP_FILE_INDEX_UNSPECIFIED ZIP_FILE_INDEX_NOT_FOUND
|
|
#define ZIP_VOLUME_NUMBER_UNSPECIFIED ZIP_VOLUME_TYPE(-1)
|
|
|
|
#endif // !defined(ZIPARCHIVE_STDAFX_DOT_H)
|
|
|