diff options
Diffstat (limited to 'scripts/resources')
-rw-r--r-- | scripts/resources/windows/mame/mame.ico | bin | 0 -> 372526 bytes | |||
-rw-r--r-- | scripts/resources/windows/mame/mame.man | 15 | ||||
-rw-r--r-- | scripts/resources/windows/mame/mame.rc | 14 | ||||
-rw-r--r-- | scripts/resources/windows/mess/mess.ico | bin | 0 -> 372526 bytes | |||
-rw-r--r-- | scripts/resources/windows/mess/mess.man | 15 | ||||
-rw-r--r-- | scripts/resources/windows/mess/mess.rc | 14 |
6 files changed, 58 insertions, 0 deletions
diff --git a/scripts/resources/windows/mame/mame.ico b/scripts/resources/windows/mame/mame.ico Binary files differnew file mode 100644 index 00000000000..62761447fc2 --- /dev/null +++ b/scripts/resources/windows/mame/mame.ico diff --git a/scripts/resources/windows/mame/mame.man b/scripts/resources/windows/mame/mame.man new file mode 100644 index 00000000000..e08eba181cb --- /dev/null +++ b/scripts/resources/windows/mame/mame.man @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> + <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> + <assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="MAME" type="win32" /> + <description>Multiple Arcade Machine Emulator</description> + <dependency> + <dependentAssembly> + <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/> + </dependentAssembly> + </dependency> + <asmv3:application> + <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> +</assembly> diff --git a/scripts/resources/windows/mame/mame.rc b/scripts/resources/windows/mame/mame.rc new file mode 100644 index 00000000000..8156b424c64 --- /dev/null +++ b/scripts/resources/windows/mame/mame.rc @@ -0,0 +1,14 @@ +// license:BSD-3-Clause +// copyright-holders:Aaron Giles +//============================================================ +// +// mame.rc - Minimal resource file for Win32 MAME +// +//============================================================ + +#include <windows.h> +#include "mamevers.rc" + +1 24 MOVEABLE PURE "mame.man" + +2 ICON DISCARDABLE "mame.ico" diff --git a/scripts/resources/windows/mess/mess.ico b/scripts/resources/windows/mess/mess.ico Binary files differnew file mode 100644 index 00000000000..bab67dd6195 --- /dev/null +++ b/scripts/resources/windows/mess/mess.ico diff --git a/scripts/resources/windows/mess/mess.man b/scripts/resources/windows/mess/mess.man new file mode 100644 index 00000000000..67ba3aced37 --- /dev/null +++ b/scripts/resources/windows/mess/mess.man @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> + <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> + <assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="MESS" type="win32" /> + <description>Multi Emulator Super System</description> + <dependency> + <dependentAssembly> + <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/> + </dependentAssembly> + </dependency> + <asmv3:application> + <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> +</assembly> diff --git a/scripts/resources/windows/mess/mess.rc b/scripts/resources/windows/mess/mess.rc new file mode 100644 index 00000000000..1329bcd6fb8 --- /dev/null +++ b/scripts/resources/windows/mess/mess.rc @@ -0,0 +1,14 @@ +// license:BSD-3-Clause +// copyright-holders:Aaron Giles +//============================================================ +// +// mess.rc - Minimal resource file for Win32 MAME +// +//============================================================ + +#include <windows.h> +#include "messvers.rc" + +1 24 MOVEABLE PURE "mess.man" + +2 ICON DISCARDABLE "mess.ico" |