Mercurial > hg > svcore
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/system/os-other.cpp Tue Jul 21 13:59:14 2020 +0100 @@ -0,0 +1,19 @@ + +extern "C" { + +bool +OSReportsDarkThemeActive() +{ + return false; +} + +bool +OSQueryAccentColour(int &r, int &g, int &b) +{ + (void)r; + (void)g; + (void)b; + return false; +} + +}