-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
doomsday.rc
150 lines (136 loc) · 4.65 KB
/
doomsday.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/**\file
*\section License
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright (c) 2008-2009 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
/**
* doomsday.rc: Doomsday-Server.exe resource script.
*/
#include "../../include/windows/resource.h"
#define APSTUDIO_READONLY_SYMBOLS
#include "windows.h"
#include "../../api/dd_version.h"
#undef APSTUDIO_READONLY_SYMBOLS
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
# ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
# endif //_WIN32
# ifdef APSTUDIO_INVOKED
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""windows.h""\r\n"
"#include ""../../api/dd_version.h""\0"
END
3 TEXTINCLUDE
BEGIN
"#ifndef NO_MANIFEST\r\n"
" CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST ""doomsday-server.exe.manifest""\r\n"
"#endif\r\n"
"\r\n"
"VS_VERSION_INFO VERSIONINFO\r\n"
"FILEVERSION DOOMSDAY_VERSION_NUMBER\r\n"
"PRODUCTVERSION DOOMSDAY_VERSION_NUMBER\r\n"
"# if defined(_DEBUG)\r\n"
"FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE\r\n"
"# elif defined(DOOMSDAY_RELEASE_FULL)\r\n"
"FILEFLAGSMASK VS_FF_SPECIALBUILD\r\n"
"# else\r\n"
"FILEFLAGSMASK 0\r\n"
"# endif\r\n"
"FILEOS VOS_NT_WINDOWS32\r\n"
"FILETYPE VFT_APP\r\n"
"FILESUBTYPE VFT2_UNKNOWN\r\n"
"BEGIN\r\n"
" BLOCK ""StringFileInfo""\r\n"
" BEGIN\r\n"
" BLOCK ""040904b0""\r\n"
" BEGIN\r\n"
" VALUE ""CompanyName"", ""\0""\r\n"
" VALUE ""FileDescription"", ""Doomsday Engine Server\0""\r\n"
" VALUE ""FileVersion"", DOOMSDAY_VERSION_TEXT ""\0""\r\n"
" VALUE ""InternalName"", ""Doomsday Engine Server\0""\r\n"
" VALUE ""LegalCopyright"", ""Copyright © 2003-2012, Deng Team\0""\r\n"
" VALUE ""OriginalFilename"", ""Doomsday-Server.exe\0""\r\n"
" VALUE ""ProductName"", ""Doomsday Engine Server\0""\r\n"
" VALUE ""ProductVersion"", DOOMSDAY_VERSION_TEXT ""\0""\r\n"
"#if !defined(_DEBUG) && !defined(DOOMSDAY_RELEASE_FULL) && defined(DOOMSDAY_RELEASE_NAME)\r\n"
" VALUE ""SpecialBuild"", DOOMSDAY_RELEASE_NAME ""\0""\r\n"
"#endif\r\n"
" END\r\n"
" END\r\n"
"\r\n"
" BLOCK ""VarFileInfo""\r\n"
" BEGIN\r\n"
" VALUE ""Translation"", 0x409, 1200\r\n"
" END\r\n"
"END\r\n"
END
# endif
/**
* Icons:
* Icon with lowest ID value placed first to ensure application icon
* remains consistent on all systems.
*/
IDI_GAME_ICON ICON DISCARDABLE "doomsday.ico"
#endif // English (U.S.) resources
#ifndef APSTUDIO_INVOKED
VS_VERSION_INFO VERSIONINFO
FILEVERSION DOOMSDAY_VERSION_NUMBER
PRODUCTVERSION DOOMSDAY_VERSION_NUMBER
# if defined(_DEBUG)
FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE
# elif !defined(DOOMSDAY_RELEASE_FULL)
FILEFLAGSMASK VS_FF_SPECIALBUILD
# else
FILEFLAGSMASK 0
# endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "Doomsday Engine Server\0"
VALUE "FileVersion", DOOMSDAY_VERSION_TEXT "\0"
VALUE "InternalName", "Doomsday Engine Server\0"
VALUE "LegalCopyright", "Copyright © 2003-2012, Deng Team\0"
VALUE "OriginalFilename", "Doomsday-Server.exe\0"
VALUE "ProductName", "Doomsday Engine Server\0"
VALUE "ProductVersion", DOOMSDAY_VERSION_TEXT "\0"
#if !defined(_DEBUG) && !defined(DOOMSDAY_RELEASE_FULL) && defined(DOOMSDAY_RELEASE_NAME)
VALUE "SpecialBuild", DOOMSDAY_RELEASE_NAME "\0"
#endif
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif