-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerfCheck.rc
More file actions
34 lines (29 loc) · 1014 Bytes
/
PerfCheck.rc
File metadata and controls
34 lines (29 loc) · 1014 Bytes
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
#include <windows.h>
#include "PerfCheck_rc.h"
IDI_PERF_CHECK ICON "PerfCheck.ico"
1 VERSIONINFO
FILEVERSION 1, 0, 0, 0
PRODUCTVERSION 1, 0, 0, 0
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4" // Matches VarFileInfo Translation hex value.
BEGIN
VALUE "CompanyName", "Martin Gäckler\000"
VALUE "FileDescription", "PerfCheck for Windows\000"
VALUE "FileVersion", "1.0\000"
VALUE "InternalName", "winapp\000"
VALUE "LegalCopyright", "Copyright (c) 2025. All Rights Reserved.\000"
VALUE "LegalTrademarks", "Windows(TM) is a trademark of Microsoft Corporation\000"
VALUE "OriginalFilename", "PerfCheck.exe\000"
VALUE "ProductName", "PerfCheck\000"
VALUE "ProductVersion", "1.0\000"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 0x04e4 // U.S. English(0x0409) & Windows Multilingual(0x04e4) 1252
// VALUE "Translation", 0x0407, 0x04e4 // Deutsch(0x0407) & Windows Multilingual(0x04e4) 1252
END
END