ultimatepp/uppsrc/VirtualGui/ChSysInit.cpp
cxl a9357c65fa VirtualGui: minor improvements
git-svn-id: svn://ultimatepp.org/upp/trunk@15641 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-01-04 13:36:20 +00:00

24 lines
220 B
C++

#include "Local.h"
#ifdef VIRTUALGUI
NAMESPACE_UPP
void ChSysInit()
{
ChReset();
}
void ChHostSkin()
{
ChSysInit();
}
bool IsSystemThemeDark()
{
return false;
}
END_UPP_NAMESPACE
#endif