annotate 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
rev   line source
Chris@1883 1
Chris@1883 2 extern "C" {
Chris@1883 3
Chris@1883 4 bool
Chris@1883 5 OSReportsDarkThemeActive()
Chris@1883 6 {
Chris@1883 7 return false;
Chris@1883 8 }
Chris@1883 9
Chris@1883 10 bool
Chris@1883 11 OSQueryAccentColour(int &r, int &g, int &b)
Chris@1883 12 {
Chris@1883 13 (void)r;
Chris@1883 14 (void)g;
Chris@1883 15 (void)b;
Chris@1883 16 return false;
Chris@1883 17 }
Chris@1883 18
Chris@1883 19 }