blob: 8474d66aa0473372abc139ad3440c69f9eee18bd (
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
|
/*____________________________________________________________________________
pgpPFLConfig.h (Win32 version)
Copyright (C) 2002 PGP Corporation
All rights reserved.
This file contains the Win32 version of the configuration file
normally generated by the automatic configure script on Unix.
$Id: pgpPFLConfig.h,v 1.3 2002/08/06 20:10:45 dallen Exp $
____________________________________________________________________________*/
#ifndef Included_pgpPFLConfig_h /* [ */
#define Included_pgpPFLConfig_h
#define HAVE_STDARG_H 1
#define HAVE_STDLIB_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_UNISTD_H 0
#define HAVE_USHORT 0
#define HAVE_UINT 0
#define HAVE_ULONG 0
#define NO_LIMITS_H 0
#define NO_POPEN 1
#if defined( __MWERKS__ )
#define PGP_HAVE64 0
#elif defined( _MSC_VER )
// wjb-for FileOffsets to be 64 bit
#define PGP_HAVE64 1
typedef __int64 PGPInt64;
typedef unsigned __int64 PGPUInt64;
#endif
#endif /* ] Included_pgpPFLConfig_h */
/*__Editor_settings____
Local Variables:
tab-width: 4
End:
vi: ts=4 sw=4
vim: si
_____________________*/
|