16 Feb
2023
16 Feb
'23
7:02 a.m.
Zhiyi Zhang (@zhiyi) commented about programs/winecfg/theme.c:
/* UXTHEME functions not in the headers */
+static const WCHAR *subkey = L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +static const WCHAR *name = L"AppsUseLightTheme"; +static const HKEY root = HKEY_CURRENT_USER; + +typedef struct +{ + DWORD value; + const WCHAR *descr; +} AppTheme; + +AppTheme app_themes[] =
app_themes is only used once. Let's move it into init_dialog(). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2183#note_24492