-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathWindowWithVersionInfo.rc
More file actions
37 lines (35 loc) · 912 Bytes
/
WindowWithVersionInfo.rc
File metadata and controls
37 lines (35 loc) · 912 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
34
35
36
37
#include <Windows.h>
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#pragma code_page(65001)
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1.0.0
PRODUCTVERSION 1.0.1
FILEFLAGSMASK 0x0L
#if !defined(NDEBUG)
FILEFLAGS VS_FF_DEBUG
#endif
FILEOS VOS_NT
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "CompanyName", "Gammasoft"
VALUE "FileDescription", "Form with version informations example"
VALUE "FileVersion", "1.0.0"
VALUE "InternalName", "FormWithVersionInfo"
VALUE "LegalCopyright", "© 2018 by Gammasoft."
VALUE "LegalTrademarks1", ""
VALUE "LegalTrademarks2", ""
VALUE "OriginalFilename", "FormWithVersionInfo.exe"
VALUE "ProductName", "FormWithVersionInfo"
VALUE "ProductVersion", "1.0.0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x000, 1200
END
END