-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmMedia.rc
60 lines (54 loc) · 2.23 KB
/
frmMedia.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
1 24 "Manifest.xml"
1 ICON ".\res\MediaPlayer.ico"
CHN RCDATA ".\res\CHN.gif"
France RCDATA ".\res\France.gif"
uk RCDATA ".\res\uk.gif"
USA RCDATA ".\res\USA.gif"
HKG RCDATA ".\res\HKG.gif"
RUS RCDATA ".\res\RUS.gif"
TWN RCDATA ".\res\TWN.gif"
CAN RCDATA ".\res\CAN.gif"
#define APP_TITLE_STR "MediaPlayer\0"
#define VER_FILEDESCRIPTION_STR "\0"
#define VER_FILEVERSION 0,0,0,591
#define VER_FILEVERSION_STR "0.0.0.591\0"
#define VER_LEGALCOPYRIGHT_STR "Cm.Wang\0"
#define VER_INTERNALNAME_STR "MediaPlayer\0"
#define VER_ORIGINALFILENAME_STR "MediaPlayer\0"
#define VER_PRODUCTNAME_STR "MediaPlayer\0"
#define VER_PRODUCTVERSION 0,0,0,0
#define VER_PRODUCTVERSION_STR "0.0.0\0"
#define VER_COMPANYNAME_STR "Visual FB Editor\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "ApplicationTitle", APP_TITLE_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", VER_INTERNALNAME_STR
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "ProductName", VER_PRODUCTNAME_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
VALUE "CompanyName", VER_COMPANYNAME_STR
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