comparison 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
comparison
equal deleted inserted replaced
1880:5671836cdac7 1883:e5d0ea9ac8f1
1
2 extern "C" {
3
4 bool
5 OSReportsDarkThemeActive()
6 {
7 return false;
8 }
9
10 bool
11 OSQueryAccentColour(int &r, int &g, int &b)
12 {
13 (void)r;
14 (void)g;
15 (void)b;
16 return false;
17 }
18
19 }