-
Notifications
You must be signed in to change notification settings - Fork 2
/
libcrypto.rc
42 lines (40 loc) · 1.13 KB
/
libcrypto.rc
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
#include <winver.h>
LANGUAGE 0x09,0x01
1 VERSIONINFO
FILEVERSION 1,1,0,7
PRODUCTVERSION 1,1,0,7
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x01L
#else
FILEFLAGS 0x00L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
// Required:
VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\0"
VALUE "FileDescription", "OpenSSL shared library\0"
VALUE "FileVersion", "1.1.0g\0"
VALUE "InternalName", "libcrypto\0"
VALUE "OriginalFilename", "libcrypto.dll\0"
VALUE "ProductName", "The OpenSSL Toolkit\0"
VALUE "ProductVersion", "1.1.0g\0"
// Optional:
//VALUE "Comments", "\0"
VALUE "LegalCopyright", "Copyright 1998-2016 The OpenSSL Authors. All rights reserved.\0"
//VALUE "LegalTrademarks", "\0"
//VALUE "PrivateBuild", "\0"
//VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 0x4b0
END
END