mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
42829b3b6d
Version information nowe resides in EmulationStation.h and is compiled into the EXE on Windows. An icon file is also included and on non-Windows systems the window icon is loaded from PNG data compiled into the EXE and set via SDL_WM_SetIcon().
39 lines
1 KiB
Plaintext
39 lines
1 KiB
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 multi-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", RESOURCE_VERSION_STRING
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x407, 1200
|
|
END
|
|
END
|
|
|
|
IDI_ES_LOGO ICON DISCARDABLE "../data/logo/ES_logo.ico" |