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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
|
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
This file deals with system dependencies to derive our very basic data
types. It should not contain any higher level types.
$Id: pgpBase.h,v 1.30 2004/02/09 23:30:31 vinnie Exp $
____________________________________________________________________________*/
#ifndef Included_pgpBase_h /* [ */
#define Included_pgpBase_h
#include "pgpPFLConfig.h"
#if !( defined(PGP_MACINTOSH) || defined(PGP_UNIX) || defined(PGP_WIN32) )
#error one of {PGP_MACINTOSH, PGP_UNIX, PGP_WIN32} must be defined
#endif
#if PGP_MACINTOSH
#include <stddef.h>
#if __MWERKS__ && ! defined( __dest_os )
#include <ansi_parms.h>
#define __dest_os __mac_os
#endif
#else
/* aCC bars on <sys/time.h> if this file is not included first */
#if PGP_COMPILER_HPUX
#include <sys/sigevent.h>
#endif /* PGP_COMPILER_HPUX */
#include <sys/types.h>
#endif
#if PGP_WIN32
#include <stddef.h> /* For size_t */
#endif
#if ! NO_LIMITS_H
#include <limits.h>
#endif
#ifndef PGP_UNICODE
#define PGP_UNICODE 0
#endif
#if PGP_WIN32
/* check for inconsistent usage of UNICODE symbols */
#if PGP_UNICODE
#if !defined(UNICODE) || !defined(_UNICODE)
#error UNICODE and _UNICODE must be defined
#endif
#else
#if defined(UNICODE) || defined(_UNICODE)
#error UNICODE and _UNICODE should not be defined
#endif
#endif
#endif
/*____________________________________________________________________________
PGP basic types
____________________________________________________________________________*/
typedef unsigned char PGPBoolean; /* can be TRUE or FALSE */
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/* PGPUInt8, PGPInt8 */
#if UCHAR_MAX == 0xff
typedef unsigned char PGPUInt8;
typedef signed char PGPInt8;
#define MAX_PGPUInt8 UCHAR_MAX
#define MAX_PGPInt8 SCHAR_MAX
#else
#error This machine has no 8-bit type
#endif
/* PGPUInt16, PGPInt16 */
#if UINT_MAX == 0xffff
typedef unsigned int PGPUInt16;
typedef int PGPInt16;
#define MAX_PGPUInt16 UINT_MAX
#define MAX_PGPInt16 INT_MAX
#elif USHRT_MAX == 0xffff
typedef unsigned short PGPUInt16;
typedef short PGPInt16;
#define MAX_PGPUInt16 USHRT_MAX
#define MAX_PGPInt16 SHRT_MAX
#else
#error This machine has no 16-bit type
#endif
/* PGPUInt32, PGPInt32 */
#if UINT_MAX == 0xfffffffful
typedef unsigned int PGPUInt32;
typedef int PGPInt32;
#define MAX_PGPUInt32 UINT_MAX
#define MAX_PGPInt32 INT_MAX
#elif ULONG_MAX == 0xfffffffful
typedef unsigned long PGPUInt32;
typedef long PGPInt32;
#define MAX_PGPUInt32 ULONG_MAX
#define MAX_PGPInt32 LONG_MAX
#elif USHRT_MAX == 0xfffffffful
typedef unsigned short PGPUInt32;
typedef short PGPInt32;
#define MAX_PGPUInt32 USHRT_MAX
#define MAX_PGPInt32 SHRT_MAX
#else
#error This machine has no 32-bit type
#endif
/*____________________________________________________________________________
PGPUInt64, PGPInt64
Find a 64-bit data type, if possible.
The conditions here are more complicated to avoid using numbers that
will choke lesser preprocessors (like 0xffffffffffffffff) unless
we're reasonably certain that they'll be acceptable.
Some *preprocessors* choke on constants that long even if the
compiler can accept them, so it doesn't work reliably to test values.
So cross our fingers and hope that it's a 64-bit type.
GCC uses ULONG_LONG_MAX. Solaris uses ULLONG_MAX.
IRIX uses ULONGLONG_MAX. Are there any other names for this?
____________________________________________________________________________*/
#if ULONG_MAX > 0xfffffffful
#if ULONG_MAX == 0xfffffffffffffffful
typedef ulong PGPUInt64;
typedef long PGPInt64;
#define PGP_HAVE64 1
#endif
#endif
#ifndef PGP_HAVE64
#if defined(ULONG_LONG_MAX) || defined (ULLONG_MAX) || defined(ULONGLONG_MAX) || defined(__LONG_LONG_MAX__)
typedef unsigned long long PGPUInt64;
typedef long long PGPInt64;
#define PGP_HAVE64 1
#endif
#endif
/*____________________________________________________________________________
This was added because for some reason or another, __LONG_LONG_MAX__ is
not defined on Linux 6.1. Hopefully this doesn't break older versions of
Linux but you never know.....
____________________________________________________________________________*/
#if defined(PGP_UNIX_LINUX) && !defined(PGP_HAVE64)
typedef long long PGPInt64;
typedef unsigned long long PGPUInt64;
#define PGP_HAVE64 1
#endif
#ifndef PGP_HAVE64
#if defined(__MWERKS__)
#if __option( longlong )
typedef unsigned long long PGPUInt64;
typedef long long PGPInt64;
#define PGP_HAVE64 1
#endif
#endif
#endif
#if PGP_HAVE64
/* too painful to test all the variants above, so just do it this way */
#define MAX_PGPUInt64 ((PGPUInt64)0xfffffffffffffffful)
#define MAX_PGPInt64 ((PGPInt64)0x7fffffffffffffff)
#endif
/*____________________________________________________________________________
PGPInt, PGPUInt, PGPLong, PGPULong
Architecture-specific data types.
PGPLong will be 64 bits on 64-bit architectures (Linux on AMD64 or WIN64).
PGPLong is hardware-supported integeral type such that
sizeof(PGPULong)==sizeof(void*)
PGPInt is the most efficient harware-supported integeral type that is at
least 32 bit long. It should be the main type for internal counters, sizes,
offsets etc unless possibly the larger space of PGPSize is required.
____________________________________________________________________________*/
/* note that this should be changed for 16 bit platform */
typedef int PGPInt;
typedef unsigned int PGPUInt;
#if PGP_WIN32
#if defined(_WIN64)
#if PGP_HAVE_64_HARDWARE==0
#error "Configuration error: PGP_HAVE_64_HARDWARE must be 1 for WIN64"
#endif
typedef __int64 PGPLong;
typedef unsigned __int64 PGPULong;
#else
#ifndef _W64
/* (this definition is only need for WINNT) */
#define _W64
#endif
typedef _W64 __int32 PGPLong;
typedef _W64 unsigned __int32 PGPULong;
#endif
#else
typedef unsigned long PGPULong;
typedef long PGPLong;
#endif
#if INT_MAX == 0x7FFFFFFFL
#define PGPENUM_TYPEDEF( enumName, typeName ) typedef enum enumName typeName
#else
#define PGPENUM_TYPEDEF( enumName, typeName ) typedef PGPInt32 typeName
#endif
#define kPGPEnumMaxValue INT_MAX
#define PGP_ENUM_FORCE( enumName ) \
k ## enumName ## force = kPGPEnumMaxValue
typedef PGPUInt8 PGPByte;
typedef PGPInt32 PGPError;
/* a simple value sufficient to hold any numeric or pointer type */
typedef void * PGPUserValue;
/* A PGPSize refers to in memory sizes. Use PGPFileOffset for file offsets */
typedef size_t PGPSize;
#define MAX_PGPSize ( ~(PGPSize)0 )
/* An offset or size of a file */
#if PGP_UNIX
#ifdef HAVE_64BIT_FILES
typedef off64_t PGPFileOffset;
#else /* !HAVE_64BIT_FILES */
typedef off_t PGPFileOffset;
#endif /* HAVE_64BIT_FILES */
#else
#if PGP_HAVE64
typedef PGPInt64 PGPFileOffset;
#else
typedef PGPInt32 PGPFileOffset;
#endif
#endif
typedef PGPUInt32 PGPFlags;
typedef time_t PGPTime;
typedef PGPULong PGPTimeInterval; /* In milliseconds */
#define kPGPMaxTimeInterval (~(PGPTimeInterval)0)
typedef struct PGPVersion
{
PGPUInt16 majorVersion;
PGPUInt16 minorVersion;
} PGPVersion;
/* character types useful for Unicode issues */
typedef char PGPChar8;
typedef PGPUInt16 PGPChar16;
typedef PGPUInt32 PGPChar32;
typedef unsigned char PGPUTF8;
#if PGP_UNICODE
typedef PGPUInt16 PGPChar;
#else
typedef char PGPChar;
#endif
typedef char PFLChar;
typedef char SDKUIChar;
/*____________________________________________________________________________
These macros should surround all C declarations in public
header files which define function or data symbols.
____________________________________________________________________________*/
#ifdef __cplusplus /* [ */
#define PGP_BEGIN_C_DECLARATIONS extern "C" {
#define PGP_END_C_DECLARATIONS }
#else /* ] __cplusplus [ */
#define PGP_BEGIN_C_DECLARATIONS
#define PGP_END_C_DECLARATIONS
#endif /* ] __cplusplus */
#ifndef pgpMin
#define pgpMin(x,y) (((x)<(y)) ? (x) : (y))
#endif
#ifndef pgpMax
#define pgpMax(x,y) (((x)>(y)) ? (x) : (y))
#endif
#ifndef PGP_DEPRECATED
#define PGP_DEPRECATED 1
#endif
#if PGP_WIN32
# define BIG_ENDIAN 123
# define LITTLE_ENDIAN 321
# define BYTE_ORDER LITTLE_ENDIAN
#endif
#if BYTE_ORDER == BIG_ENDIAN
# define PGP_WORDSBIGENDIAN 1
# define PGP_WORDSLITTLEENDIAN 0
#elif BYTE_ORDER == LITTLE_ENDIAN
# define PGP_WORDSBIGENDIAN 0
# define PGP_WORDSLITTLEENDIAN 1
#else
# error define your byte order
#endif
/*____________________________________________________________________________
* The PGP equivalent of the MS "TEXT" macro. PGPTEXT wraps a string literal
* and causes it to compile as 8 or 16 bit characters on the basis of the
* PGP_UNICODE symbol.
*/
#if PGP_UNICODE
#define PGPTEXT(literal) L##literal
#else
#define PGPTEXT(literal) literal
#endif
/*____________________________________________________________________________
* Macros for wrapping text literals. These macros serve two purposes:
* (a) to indicate to the reader of the source code the way in which the
* literal is used (and therefore why the string should not be externalized
* and localized), and (b) to indicate to the compiler whether the literal
* should be compiled as 8-bit or 16-bit characters.
*
* To the right of each macro is the abbreviation to use when naming
* string resources.
*/
/* PGPTXT_USER should be used for strings which are to be displayed
* to the user, but which we have decided not to translate, for whatever
* reason.
*/
#define PGPTXT_USER(literal) PGPTEXT(literal) /* USR */
#define PGPTXT_USER8(literal) literal
#define PGPTXT_USER16(literal) L##literal
/* PGPTXT_ADMIN is for messages to be seen by an admin; we may choose to
* translate these in the future.
*/
#define PGPTXT_ADMIN(literal) PGPTEXT(literal) /* ADM */
/* PGPTXT_MACHINE strings are meant to be read by a machine. That is,
* the usual usage would be that this string is never seen by anyone,
* neither users, developers, admins nor qa; it is only seen by programs.
* This includes textual material in tables where that is meant to be
* compared against hardcoded strings looking for a match. Explicit
* 8- and 16-bit versions are provided.
*/
#define PGPTXT_MACHINE(literal) PGPTEXT(literal) /* MAC */
#define PGPTXT_MACHINE8(literal) literal
#define PGPTXT_MACHINE16(literal) L##literal
#define PFLTXT_MACHINE PGPTXT_MACHINE8
#define SDKUITXT_MACHINE PGPTXT_DEBUG8
#define SDKUITXT_USER PGPTXT_MACHINE8
/* String literals in obsolete sections of code may be left in for
* clarity or historical reasons. They should be marked with the
* PGPTXT_OBSOLETE macro.
*/
#define PGPTXT_OBSOLETE(literal) literal /* OBS */
/* PGPTXT_FIXBEFORESHIP is for strings for which the tagger is not sure
* what to do with them, but which will need to be decided eventually.
*/
#define PGPTXT_FIXBEFORESHIP(literal) literal /* FIX */
/* PGPTXT_DEBUG should be used for strings which are to be seen only by
* developers or testers. This would include compiled-out self-test
* code, debugging code, printf's, messageboxes, debug logs, and asserts.
*/
#define PGPTXT_DEBUG(literal) PGPTEXT(literal) /* DBG */
#define PGPTXT_DEBUG8(literal) literal
#define PGPTXT_DEBUG16(literal) L##literal
#define PFLTXT_DEBUG PGPTXT_DEBUG8
#define SDKUITXT_DEBUG PGPTXT_DEBUG8
/* PGPTXT_DEFERRED is used to mark text for which externalization
* has been deferred because the text is not actually used in the
* current implementation but it may be someday. Externalizing
* such text would create unnecessary work for the localizers at
* this point in time.
*/
#define PGPTXT_DEFERRED(literal) PGPTEXT(literal)
#define PGPTXT_DEFERRED8(literal) literal
#define PGPTXT_DEFERRED16(literal) L##literal
#if defined(__GNUC__) && (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1) && PGP_OSX
#define PGP_WEAK_IMPORT __attribute__((weak_import))
#else
#define PGP_WEAK_IMPORT
#endif
#endif /* ] Included_pgpBase_h */
/*__Editor_settings____
Local Variables:
tab-width: 4
End:
vi: ts=4 sw=4
vim: si
_____________________*/
|