mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
39 lines
1,021 B
Plaintext
39 lines
1,021 B
Plaintext
|
#include "EmulationStation.h"
|
||
|
|
||
|
#include "windows.h"
|
||
|
|
||
|
VS_VERSION_INFO VERSIONINFO
|
||
|
FILEVERSION RESOURCE_VERSION
|
||
|
PRODUCTVERSION RESOURCE_VERSION
|
||
|
FILEFLAGSMASK 0x3fL
|
||
|
#ifdef _DEBUG
|
||
|
FILEFLAGS 0x1L
|
||
|
#else
|
||
|
FILEFLAGS 0x0L
|
||
|
#endif
|
||
|
FILEOS VOS_NT_WINDOWS32
|
||
|
FILETYPE VFT_APP
|
||
|
FILESUBTYPE VFT2_UNKNOWN
|
||
|
BEGIN
|
||
|
BLOCK "StringFileInfo"
|
||
|
BEGIN
|
||
|
BLOCK "040904E4"
|
||
|
BEGIN
|
||
|
VALUE "Comments", "\0"
|
||
|
VALUE "FileDescription", "EmulationStation - emulator frontend\0"
|
||
|
VALUE "FileVersion", RESOURCE_VERSION_STRING
|
||
|
VALUE "InternalName", "emulationstation.exe\0"
|
||
|
VALUE "LegalCopyright", "\0"
|
||
|
VALUE "LegalTrademarks", "\0"
|
||
|
VALUE "OriginalFilename", "emulationstation.exe\0"
|
||
|
VALUE "ProductName", "EmulationStation\0"
|
||
|
VALUE "ProductVersion", PROGRAM_VERSION_STRING
|
||
|
END
|
||
|
END
|
||
|
BLOCK "VarFileInfo"
|
||
|
BEGIN
|
||
|
VALUE "Translation", 0x409, 1252
|
||
|
END
|
||
|
END
|
||
|
|
||
|
IDI_ES_LOGO ICON DISCARDABLE "../data/es_icon.ico"
|