view system/os-other.cpp @ 1883:e5d0ea9ac8f1

OK I give in, we are going to have to put this in a separate DLL so we can deploy a version on Win7 that doesn't have the WinRT dependency
author Chris Cannam
date Tue, 21 Jul 2020 13:59:14 +0100
parents
children
line wrap: on
line source

extern "C" {
    
bool
OSReportsDarkThemeActive()
{
    return false;
}

bool
OSQueryAccentColour(int &r, int &g, int &b)
{
    (void)r;
    (void)g;
    (void)b;
    return false;
}

}