mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00
[libromdata] EXE: Add .mui and .mun to the file extensions list.
.mui is a resource DLL used for localization. .mun is used in Windows 10 1903+ (or possibly slightly earlier) for icons in C:\Windows\SystemResources\ , instead of storing icons in e.g. notepad.exe.
This commit is contained in:
parent
9ca7daf9c8
commit
783d384b04
@ -40,7 +40,7 @@ ROMDATA_IMPL(EXE)
|
||||
/** EXEPrivate **/
|
||||
|
||||
/* RomDataInfo */
|
||||
const array<const char*, (8*2)+1> EXEPrivate::exts = {{
|
||||
const array<const char*, (9*2)+1> EXEPrivate::exts = {{
|
||||
// References:
|
||||
// - https://en.wikipedia.org/wiki/Portable_Executable
|
||||
|
||||
@ -52,6 +52,9 @@ const array<const char*, (8*2)+1> EXEPrivate::exts = {{
|
||||
".ocx", ".scr",
|
||||
".sys", ".tsp",
|
||||
|
||||
// Windows multi-lingual user interface files (PE)
|
||||
".mui", ".mun",
|
||||
|
||||
// NE extensions
|
||||
".fon", ".icl",
|
||||
|
||||
|
@ -45,7 +45,7 @@ private:
|
||||
|
||||
public:
|
||||
/** RomDataInfo **/
|
||||
static const std::array<const char*, (8*2)+1> exts;
|
||||
static const std::array<const char*, (9*2)+1> exts;
|
||||
static const std::array<const char*, 5+1> mimeTypes;
|
||||
static const LibRpBase::RomDataInfo romDataInfo;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user