1#include "winresrc.h"
2
3#ifdef HAVE_CONFIG_H
4#include "config.h"
5#endif
6
7#include "base/internal_plugins.h" // for PLUGIN_ENABLED_STATIC
8#include "base/internal_version.h"
9
10#define FILE 256
11#define IDI_ICON  1001
12#define IDI_COUNT 1002
13#define ID_GDF_XML __GDF_XML
14
15CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "dists/win32/scummvm.exe.manifest"
16IDI_ICON               ICON    "icons/scummvm.ico"
17IDI_COUNT              ICON    "icons/count.ico"
18
19ID_GDF_XML             DATA    "dists/win32/scummvm.gdf.xml"
20
21scummclassic.zip       FILE    "gui/themes/scummclassic.zip"
22scummmodern.zip        FILE    "gui/themes/scummmodern.zip"
23scummremastered.zip    FILE    "gui/themes/scummremastered.zip"
24#ifdef USE_TRANSLATION
25translations.dat       FILE    "gui/themes/translations.dat"
26#endif
27#ifdef USE_SDL_NET
28wwwroot.zip            FILE    "dists/networking/wwwroot.zip"
29#endif
30#ifdef USE_FREETYPE2
31fonts.dat              FILE    "dists/engine-data/fonts.dat"
32#endif
33
34#if PLUGIN_ENABLED_STATIC(ACCESS)
35access.dat             FILE    "dists/engine-data/access.dat"
36#endif
37#if PLUGIN_ENABLED_STATIC(CRYO)
38cryo.dat               FILE    "dists/engine-data/cryo.dat"
39#endif
40#if PLUGIN_ENABLED_STATIC(CRYOMNI3D)
41cryomni3d.dat          FILE    "dists/engine-data/cryomni3d.dat"
42#endif
43#if PLUGIN_ENABLED_STATIC(DRASCULA)
44drascula.dat           FILE    "dists/engine-data/drascula.dat"
45#endif
46#if PLUGIN_ENABLED_STATIC(HUGO)
47hugo.dat               FILE    "dists/engine-data/hugo.dat"
48#endif
49#if PLUGIN_ENABLED_STATIC(KYRA)
50kyra.dat               FILE    "dists/engine-data/kyra.dat"
51#endif
52#if PLUGIN_ENABLED_STATIC(LURE)
53lure.dat               FILE    "dists/engine-data/lure.dat"
54#endif
55#if PLUGIN_ENABLED_STATIC(MORTEVIELLE)
56mort.dat               FILE    "dists/engine-data/mort.dat"
57#endif
58#if PLUGIN_ENABLED_STATIC(NEVERHOOD)
59neverhood.dat          FILE    "dists/engine-data/neverhood.dat"
60#endif
61#if PLUGIN_ENABLED_STATIC(QUEEN)
62queen.tbl              FILE    "dists/engine-data/queen.tbl"
63#endif
64#if PLUGIN_ENABLED_STATIC(SKY)
65sky.cpt                FILE    "dists/engine-data/sky.cpt"
66#endif
67#if PLUGIN_ENABLED_STATIC(SUPERNOVA)
68supernova.dat          FILE    "dists/engine-data/supernova.dat"
69#endif
70#if PLUGIN_ENABLED_STATIC(TEENAGENT)
71teenagent.dat          FILE    "dists/engine-data/teenagent.dat"
72#endif
73#if PLUGIN_ENABLED_STATIC(TITANIC)
74titanic.dat            FILE    "dists/engine-data/titanic.dat"
75#endif
76#if PLUGIN_ENABLED_STATIC(TONY)
77tony.dat               FILE    "dists/engine-data/tony.dat"
78#endif
79#if PLUGIN_ENABLED_STATIC(TOON)
80toon.dat               FILE    "dists/engine-data/toon.dat"
81#endif
82#if PLUGIN_ENABLED_STATIC(WINTERMUTE)
83wintermute.zip         FILE    "dists/engine-data/wintermute.zip"
84#endif
85#if PLUGIN_ENABLED_STATIC(XEEN)
86xeen.ccs               FILE    "dists/engine-data/xeen.ccs"
87#endif
88#if PLUGIN_ENABLED_STATIC(AGI)
89pred.dic               FILE    "dists/pred.dic"
90#endif
91
92VS_VERSION_INFO VERSIONINFO
93 FILEVERSION     SCUMMVM_VER_MAJOR,SCUMMVM_VER_MINOR,SCUMMVM_VER_PATCH,0
94 PRODUCTVERSION  SCUMMVM_VER_MAJOR,SCUMMVM_VER_MINOR,SCUMMVM_VER_PATCH,0
95 FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
96#ifdef _DEBUG
97 FILEFLAGS       VS_FF_DEBUG
98#else
99 FILEFLAGS       0
100#endif
101 FILEOS          VOS_NT_WINDOWS32
102 FILETYPE        VFT_APP
103 FILESUBTYPE     VFT2_UNKNOWN
104BEGIN
105    BLOCK "StringFileInfo"
106    BEGIN
107        BLOCK "040904b0" // US English, Unicode
108        BEGIN
109            VALUE "Comments", "Look! A three headed monkey (TM)! .. Nice use of the TM!\0"
110            VALUE "CompanyName", "scummvm.org\0"
111            VALUE "FileDescription", "ScummVM: A free implementation of various adventure game engines\0"
112            VALUE "FileVersion", SCUMMVM_VERSION "\0"
113            VALUE "InternalName", "scummvm\0"
114            VALUE "LegalCopyright", "Copyright \xA9 2001-2020 The ScummVM Team\0"
115            VALUE "LegalTrademarks", "'SCUMM', and all SCUMM games are a TM of LucasArts. Simon The Sorcerer is a TM of AdventureSoft. Beneath a Steel Sky and Broken Sword are a TM of Revolution. Flight of the Amazon Queen is a TM of John Passfield and Steve Stamatiadis. \0"
116            VALUE "OriginalFilename", "scummvm.exe\0"
117            VALUE "ProductName", "ScummVM\0"
118            VALUE "ProductVersion", SCUMMVM_VERSION "\0"
119        END
120    END
121
122    BLOCK "VarFileInfo"
123    BEGIN
124        VALUE "Translation", 0x409, 1200 // US English, Unicode
125    END
126END
127