mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 18:41:12 +00:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
#include "winresrc.h"
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#define FILE 256
|
|
|
|
IDI_ICON ICON DISCARDABLE "icons/residual.ico"
|
|
|
|
modern.zip FILE "gui/themes/modern.zip"
|
|
#ifdef USE_TRANSLATION
|
|
translations.dat FILE "gui/themes/translations.dat"
|
|
#endif
|
|
|
|
#endif
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @VER_MAJOR@,@VER_MINOR@,@VER_PATCH@,0
|
|
PRODUCTVERSION @VER_MAJOR@,@VER_MINOR@,@VER_PATCH@,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0" // US English, Unicode
|
|
BEGIN
|
|
VALUE "Comments", "\0"
|
|
VALUE "FileDescription", "http://residual.sourceforge.net/\0"
|
|
VALUE "FileVersion", "@VERSION@\0"
|
|
VALUE "InternalName", "residual\0"
|
|
VALUE "LegalCopyright", "Copyrights information are in AUTHORS file\0"
|
|
VALUE "OriginalFilename", "residual.exe\0"
|
|
VALUE "ProductName", "Residual\0"
|
|
VALUE "ProductVersion", "@VERSION@\0"
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200 // US English, Unicode
|
|
END
|
|
END
|