Mercurial > hg > svcore
annotate system/os-other.cpp @ 1884:bdab3a921d5d
Merge
author | Chris Cannam |
---|---|
date | Tue, 21 Jul 2020 13:59:29 +0100 |
parents | e5d0ea9ac8f1 |
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 } |