-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.rc.in
72 lines (66 loc) · 3.08 KB
/
version.rc.in
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
63
64
65
66
67
68
69
70
71
72
#pragma code_page(65001) // UTF-8
#define VER_FILEVERSION @GUI_MAJOR_VERSION@,@GUI_MINOR_VERSION@,@GUI_PATCH_VERSION@,@GUI_TWEAK_VERSION@
#define VER_FILEVERSION_STR "@GUI_MAJOR_VERSION@,@GUI_MINOR_VERSION@,@GUI_PATCH_VERSION@,@GUI_TWEAK_VERSION@\0"
#define VER_PRODUCTVERSION @GUI_MAJOR_VERSION@,@GUI_MINOR_VERSION@,@GUI_PATCH_VERSION@,@GUI_TWEAK_VERSION@
#define VER_PRODUCTVERSION_STR "@GUI_MAJOR_VERSION@,@GUI_MINOR_VERSION@,@GUI_PATCH_VERSION@\0"
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
1 VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK 0x3f
FILEFLAGS VER_DEBUG
FILEOS 0x40004
FILETYPE 0x1
FILESUBTYPE 0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "PrepPipe Project\0"
VALUE "FileDescription", "PrepPipe Compiler Graphical User Interface\0"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "PrepPipe GUI\0"
VALUE "LegalCopyright", "Copyright (c) 2023 PrepPipe Contributors\0"
VALUE "OriginalFilename", "preppipe_gui.exe\0"
VALUE "ProductName", "PrepPipe Compiler\0"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
BLOCK "080404B0"
BEGIN
VALUE "CompanyName", "语涵计划\0"
VALUE "FileDescription", "语涵编译器图形界面\0"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "PrepPipe GUI\0"
VALUE "LegalCopyright", "Copyright (c) 2023 语涵计划贡献者\0"
VALUE "OriginalFilename", "preppipe_gui.exe\0"
VALUE "ProductName", "语涵编译器\0"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
BLOCK "040404B0"
BEGIN
VALUE "CompanyName", "語涵計劃\0"
VALUE "FileDescription", "語涵編譯器圖形界面\0"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "PrepPipe GUI\0"
VALUE "LegalCopyright", "Copyright (c) 2023 語涵計劃貢獻者\0"
VALUE "OriginalFilename", "preppipe_gui.exe\0"
VALUE "ProductName", "語涵編譯器\0"
VALUE "ProductVersion", VER_PRODUCTVERSION_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", 0x0804, 1200, 0x0404, 1200, 0x409, 1252
END
END