-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rc
40 lines (35 loc) · 1.1 KB
/
main.rc
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
#include <windows.h>
ICON_1 ICON "app.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 0, 0, 0
PRODUCTVERSION 1, 0, 0, 0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "TURBO-PLAY.COM"
VALUE "FileDescription", "VisualDML"
VALUE "FileVersion", "1.0.0.0"
VALUE "InternalName", "VisualDML"
VALUE "LegalCopyright", "Chourdakis Michael"
VALUE "OriginalFilename", "VisualDML.EXE"
VALUE "ProductName", ""
VALUE "ProductVersion", "1"
END
END
BLOCK "VarFileInfo"
BEGIN
/* The following line should only be modified for localized versions. */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a language,codepage combination supported by the file. */
/* */
/* For example, a file might have values "0x409,1252" indicating that it */
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
VALUE "Translation", 0x409, 1252
END
END