-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwinres.rc
More file actions
executable file
·30 lines (28 loc) · 834 Bytes
/
winres.rc
File metadata and controls
executable file
·30 lines (28 loc) · 834 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
#include "version.h"
1 VERSIONINFO
FILEVERSION _VERSION_MAJOR_,_VERSION_MINOR_,_VERSION_BUILDS_,_VERSION_REVISION_
PRODUCTVERSION _PRODVERSION_MAJOR_,_PRODVERSION_MINOR_,_PRODVERSION_BUILDS_,_PRODVERSION_REVISION_
FILEOS 0x4
FILETYPE 0x1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x9L
#else
FILEFLAGS 0x8L
#endif
{
BLOCK "StringFileInfo" {
BLOCK "040904B0" {
VALUE "FileDescription", _PROD_DESCRIPTION_
VALUE "CompanyName", _ORGANIZATION_NAME_
VALUE "InternalName", _PROD_NAME_ ".exe"
VALUE "LegalCopyright", _PROD_COPYRIGHT_
VALUE "ProductName", _PROD_NAME_
VALUE "ProductVersion", _PRODVERSION_
VALUE "FileVersion", _VERSION_
}
}
BLOCK "VarFileInfo" {
VALUE "Translation", 0x0409, 1200
}
}