-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprogram.rc
62 lines (55 loc) · 2.12 KB
/
program.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
61
62
#include <windows.h>
IDI_ICON1 ICON DISCARDABLE "res/cd2netmdgui.ico"
#define VER_FILEVERSION 0,2,1,3
#define VER_FILEVERSION_STR #VER_FILEVERSION
#define PROD_VER_STR "2.1.3"
#define FILE_VER_STR PROD_VER_STR
#define VER_PRODUCTVERSION VER_FILEVERSION
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
#define COMP_NAME "Jo2003"
#define COPYRIGHT "(c)2022 - 2023 by Jo2003"
#define ORG_FILENAME "NetMD Wizard.exe"
#define PROD_NAME "NetMD Wizard"
#define FILE_DESCR "NetMD Utility"
#define INT_NAME "cd2netmd_gui"
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", COMP_NAME
VALUE "FileDescription", FILE_DESCR
VALUE "FileVersion", FILE_VER_STR
VALUE "InternalName", INT_NAME
VALUE "LegalCopyright", COPYRIGHT
VALUE "LegalTrademarks1", ""
VALUE "LegalTrademarks2", ""
VALUE "OriginalFilename", ORG_FILENAME
VALUE "ProductName", PROD_NAME
VALUE "ProductVersion", PROD_VER_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