Set console's default language/country/region based on computer settings

This commit is contained in:
JosJuice
2020-12-27 23:11:22 +01:00
parent a1000afacc
commit 27ddf6382b
13 changed files with 278 additions and 5 deletions

View File

@ -5,6 +5,7 @@
#pragma once
#include <string>
#include <vector>
// Host - defines an interface for the emulator core to communicate back to the
// OS-specific layer
@ -32,9 +33,11 @@ enum class HostMessageID
WMUserJobDispatch,
};
std::vector<std::string> Host_GetPreferredLocales();
bool Host_UIBlocksControllerState();
bool Host_RendererHasFocus();
bool Host_RendererIsFullscreen();
void Host_Message(HostMessageID id);
void Host_NotifyMapLoaded();
void Host_RefreshDSPDebuggerWindow();