2006-01-25 20:53:25 +00:00
#include "winresrc.h"
2011-04-22 00:29:18 +02:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define FILE 256
2011-06-30 22:42:51 -04:00
#define IDI_ICON 1001
#define IDI_COUNT 1002
2011-07-01 09:18:36 -04:00
#define ID_GDF_XML __GDF_XML
2011-04-22 00:29:18 +02:00
2006-05-09 23:38:10 +00:00
IDI_ICON ICON DISCARDABLE "icons/scummvm.ico"
2011-06-30 22:42:51 -04:00
IDI_COUNT ICON DISCARDABLE "icons/count.ico"
2011-04-22 00:29:18 +02:00
2011-07-01 09:18:36 -04:00
ID_GDF_XML DATA "dists/win32/scummvm.gdf.xml"
2012-07-05 00:46:28 +02:00
scummclassic.zip FILE "gui/themes/scummclassic.zip"
2011-04-22 00:29:18 +02:00
scummmodern.zip FILE "gui/themes/scummmodern.zip"
#ifdef USE_TRANSLATION
translations.dat FILE "gui/themes/translations.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_DRASCULA == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
drascula.dat FILE "dists/engine-data/drascula.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_HUGO == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
hugo.dat FILE "dists/engine-data/hugo.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_KYRA == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
kyra.dat FILE "dists/engine-data/kyra.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_LURE == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
lure.dat FILE "dists/engine-data/lure.dat"
#endif
2013-07-04 23:46:52 +02:00
#if ENABLE_MORTEVIELLE == STATIC_PLUGIN
mort.dat FILE "dists/engine-data/mort.dat"
#endif
2013-05-20 11:49:23 +02:00
#if ENABLE_NEVERHOOD == STATIC_PLUGIN
neverhood.dat FILE "dists/engine-data/neverhood.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_QUEEN == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
queen.tbl FILE "dists/engine-data/queen.tbl"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_SKY == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
sky.cpt FILE "dists/engine-data/sky.cpt"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_TEENAGENT == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
teenagent.dat FILE "dists/engine-data/teenagent.dat"
#endif
2013-06-05 22:32:32 +02:00
#if ENABLE_TONY == STATIC_PLUGIN
tony.dat FILE "dists/engine-data/tony.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_TOON == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
toon.dat FILE "dists/engine-data/toon.dat"
#endif
2013-01-28 22:35:54 +11:00
#if ENABLE_WINTERMUTE == STATIC_PLUGIN
wintermute.zip FILE "dists/engine-data/wintermute.zip"
#endif
#if ENABLE_AGI == STATIC_PLUGIN
2011-04-22 00:29:18 +02:00
pred.dic FILE "dists/pred.dic"
#endif
2006-01-25 20:53:25 +00:00
VS_VERSION_INFO VERSIONINFO
2011-03-08 14:31:45 +01:00
FILEVERSION @VER_MAJOR@,@VER_MINOR@,@VER_PATCH@,0
PRODUCTVERSION @VER_MAJOR@,@VER_MINOR@,@VER_PATCH@,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
2006-01-25 20:53:25 +00:00
#ifdef _DEBUG
2011-03-08 14:31:45 +01:00
FILEFLAGS VS_FF_DEBUG
2006-01-25 20:53:25 +00:00
#else
2011-03-08 14:31:45 +01:00
FILEFLAGS 0
2006-01-25 20:53:25 +00:00
#endif
2011-03-08 14:31:45 +01:00
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
2006-01-25 20:53:25 +00:00
BEGIN
BLOCK "StringFileInfo"
BEGIN
2011-03-08 14:31:45 +01:00
BLOCK "040904b0" // US English, Unicode
2006-01-25 20:53:25 +00:00
BEGIN
VALUE "Comments", "Look! A three headed monkey (TM)! .. Nice use of the TM!\0"
VALUE "FileDescription", "http://www.scummvm.org/\0"
VALUE "FileVersion", "@VERSION@\0"
VALUE "InternalName", "scummvm\0"
2014-01-01 12:44:08 +02:00
VALUE "LegalCopyright", "Copyright <20> 2001-2014 The ScummVM Team\0"
2006-01-25 20:53:25 +00:00
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"
VALUE "OriginalFilename", "scummvm.exe\0"
VALUE "ProductName", "ScummVM\0"
VALUE "ProductVersion", "@VERSION@\0"
END
END
2011-03-08 14:31:45 +01:00
2006-01-25 20:53:25 +00:00
BLOCK "VarFileInfo"
BEGIN
2011-03-08 14:31:45 +01:00
VALUE "Translation", 0x409, 1200 // US English, Unicode
2006-01-25 20:53:25 +00:00
END
END