blob: ae4c35d89172626a4b6e5948ba09d250706d2c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
////////////////////////////////////////////////////////////////////////////////
// This source file is part of the ZipArchive Library Open Source distribution
// and is Copyrighted 2000 - 2022 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: https://www.artpol-software.com
////////////////////////////////////////////////////////////////////////////////
/**
* \file stdafx.h
* Contains global definitions.
*
*/
#if !defined(ZIPARCHIVE_STDAFX_DOT_H)
#define ZIPARCHIVE_STDAFX_DOT_H
#include "_features.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_IMPL_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), _T(""), 0)
#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
#ifdef __GNUC__
#include <unistd.h>
#endif
#if !defined(_INTPTR_T_DEFINED) && !defined(__intptr_t_defined)
#if __BORLANDC__ > 0x551
#include <stdint.h>
#elif (_MSC_VER <= 1200 || !defined _MSC_VER) && (!defined(__GNUC__) || __GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 7)
typedef long int intptr_t;
#endif
#endif
#ifndef UNICODE
#ifdef _ZIP_UNICODE_NORMALIZE
#undef _ZIP_UNICODE_NORMALIZE
#endif
#ifdef _ZIP_UNICODE_CUSTOM
#undef _ZIP_UNICODE_CUSTOM
#endif
#if defined _ZIP_UNICODE && defined _ZIP_SYSTEM_WIN
#undef _ZIP_UNICODE
#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)
#if defined __GNUC__ || defined __MINGW32__
#define SUFFIX_I64(v) v##LL
#else
#define SUFFIX_I64(v) v##i64
#endif
#ifdef _ZIP_SYSTEM_WIN
#define ZIP_SYSTEM_ERROR_TYPE DWORD
#else
#define ZIP_SYSTEM_ERROR_TYPE int
#endif
#endif // !defined(ZIPARCHIVE_STDAFX_DOT_H)
|