view system/os-other.cpp @ 1884:bdab3a921d5d

Merge
author Chris Cannam
date Tue, 21 Jul 2020 13:59:29 +0100
parents e5d0ea9ac8f1
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;
}

}