-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresources.rc.old
30 lines (28 loc) · 936 Bytes
/
resources.rc.old
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
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif /* Prevents winsock.h from being included in windows.h */
#include <windows.h> /* Needed for a few definitions, can be excluded if you use values instead. */
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "iota_inputtest.exe.manifest"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
/* PRODUCTVERSION 1,0,0,0 */
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "My Company."
VALUE "FileDescription", "A Win32 program."
VALUE "FileVersion", "1.0.0.0"
VALUE "ProductName", "The product name."
VALUE "ProductVersion", "1.0"
VALUE "LegalCopyright", "My Company."
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END