-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.rc
52 lines (45 loc) · 2.71 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
41
42
43
44
45
46
47
48
49
50
51
52
#include "windows.h"
#include "commctrl.h"
ICON_1 ICON "app.ico"
MENU_1 MENU
{
POPUP "File"
{
MENUITEM "Exit",199
}
}
#define VER_FILEVERSION 1,0,0,0
#define VER_PRODUCTVERSION 1,0,0,0
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "TurboIRC.COM"
VALUE "FileDescription", "Backup Archiver"
VALUE "FileVersion", "1.0.0.0"
VALUE "InternalName", "Backup Archiver"
VALUE "LegalCopyright", "Chourdakis Michael"
VALUE "OriginalFilename", "BAR.EXE"
VALUE "ProductName", "Backup Archiver"
VALUE "ProductVersion", "1.0.0.0"
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