view system/os-other.cpp @ 1886:f803d3c33f76 tip

Switch off copious debug in soft synth driving
author Chris Cannam
date Fri, 14 Aug 2020 10:44:44 +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;
}

}