-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcrypt32.rc
More file actions
executable file
·89 lines (79 loc) · 2.94 KB
/
crypt32.rc
File metadata and controls
executable file
·89 lines (79 loc) · 2.94 KB
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
/* cryptlib resource file. We provide a slightly different version depending
on whether it's a debug or release build because some Windows lusers
complained about the fact that the code indicated a version of "beta n".
Shipping them exactly the same code renamed to "SPn" fixed the problem.
Unlike the C compiler, the resource compiler doesn't define platform-
specific macros, so it's necessary to do this manually via Properties |
Resources | General | Preprocessor Definitions */
#ifdef APSTUDIO_INVOKED
#error This file should not be edited using the resource editor (ApStudio)
#endif /* Resource editor fiddling with the file */
#ifdef _WIN32_WCE
#include <winbase.h>
#else
#include <winver.h>
#endif /* Win32 vs. WinCE */
#include "misc/config.h"
/* If we're building with nonstandard options, mark it as a private build */
#if defined( USE_CERT_DNSTRING ) || defined( USE_CRYPTOAPI ) || \
defined( USE_DNSSRV ) || defined( USE_GCM ) || defined( USE_LDAP ) || \
defined( USE_OAEP ) || defined( USE_PKCS12 ) || \
defined( USE_SSH_EXTENDED ) || defined( USE_DES ) || \
defined( USE_RC2 ) || defined( USE_RC4 )
#define PRIVATE_BUILD
#endif /* Nonstandard config.options */
/* cryptlib version information, needed at various places in the resources */
#define VERSION 3,4,3
#define VERSION_STR "3.4.3\0"
/* The version information resource */
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION
PRODUCTVERSION VERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#if defined( _DEBUG )
FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD | VS_FF_PRERELEASE
#elif defined( PRIVATE_BUILD )
FILEFLAGS VS_FF_PRIVATEBUILD
#else
FILEFLAGS 0
#endif /* _DEBUG */
#ifdef _WIN32_WCE
#if UNDER_CE >= 400
FILEOS VOS_WINDOWSCE
#else
FILEOS VOS_NT_WINDOWS32
#endif /* Older vs. newer eVC++ versions */
#else
FILEOS VOS_NT
#endif /* Win32 vs. WinCE */
FILETYPE VFT_DLL
FILESUBTYPE 0 ; Not needed for DLLs
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 1252 ; US English, Windoze charset
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4" ; US English, Windoze charset data
BEGIN
#if defined( _WIN32_WCE )
VALUE "FileDescription", "cryptlib security toolkit for Windows CE\0"
#elif defined( _WIN64 )
VALUE "FileDescription", "cryptlib security toolkit (64 bit)\0"
#else
VALUE "FileDescription", "cryptlib security toolkit (32 bit)\0"
#endif /* Win32 vs. WinCE */
VALUE "ProductName", "cryptlib security toolkit\0"
VALUE "CompanyName", "Peter Gutmann\0"
VALUE "LegalCopyright", "Copyright \251 1994 - 2015 Peter Gutmann, Eric Young, OpenSSL\0"
VALUE "FileVersion", VERSION_STR
VALUE "ProductVersion", VERSION_STR
#if defined( _DEBUG )
VALUE "PrivateBuild", "Debug/test build, not for production use!\0" ; Needed for VS_FF_PRIVATEBUILD
#elif defined( PRIVATE_BUILD )
VALUE "PrivateBuild", "Nonstandard build, not an official release\0" ; Needed for VS_FF_PRIVATEBUILD
#endif /* _DEBUG */
END
END
END