-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresource.rc
More file actions
62 lines (58 loc) · 2.46 KB
/
Copy pathresource.rc
File metadata and controls
62 lines (58 loc) · 2.46 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
/****************************************************************************
* HACK DETECTION! HACK DETECTION! HACK DETECTION? HACK DETECTION! *
* *
* Copyright (c) 2017 by David Korth. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************/
#include <windows.h>
/** Manifest. **/
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "hack-detection.exe.manifest"
/** Icons. **/
1 ICON "hack-detection.ico"
/** Application version. **/
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,2,0
PRODUCTVERSION 1,0,2,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
/* English (US), Unicode */
BLOCK "040904B0"
BEGIN
//VALUE "Comments", "\0"
//VALUE "CompanyName", "\0"
VALUE "FileDescription", "*** HACK DETECTION ***\0"
VALUE "FileVersion", "hack-detection 1.0.2.0\0"
VALUE "InternalName", "hack-detection\0"
VALUE "LegalCopyright", "Copyright (c) 2017 by David Korth.\0"
//VALUE "LegalTrademarks", "\0"
//VALUE "OriginalFilename", "\0"
//VALUE "PrivateBuild", "\0"
VALUE "ProductName", "*** HACK DETECTION ***\0"
VALUE "ProductVersion", "hack-detection 1.0.2.0\0"
//VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END