mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: #927 Move OS specific code from client or server to NeL when it's possible
This commit is contained in:
parent
d2c478106d
commit
7cb2d2e09e
1 changed files with 0 additions and 29 deletions
|
@ -160,35 +160,6 @@ void CMusicPlayer::update ()
|
|||
|
||||
// ***************************************************************************
|
||||
|
||||
bool supportUnicode()
|
||||
{
|
||||
static bool init = false;
|
||||
static bool unicodeSupported = false;
|
||||
if (!init)
|
||||
{
|
||||
init = true;
|
||||
#ifdef NL_OS_WINDOWS
|
||||
OSVERSIONINFO osvi;
|
||||
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
||||
if (::GetVersionEx (&osvi))
|
||||
{
|
||||
if (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT)
|
||||
{
|
||||
if (osvi.dwMajorVersion >= 4)
|
||||
{
|
||||
unicodeSupported = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
#else
|
||||
unicodeSupported = true;
|
||||
#endif
|
||||
}
|
||||
return unicodeSupported;
|
||||
}
|
||||
|
||||
// ***************************************************************************
|
||||
|
||||
class CMusicPlayerPlaySongs: public IActionHandler
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue