Module: wine Branch: master Commit: 71b3d10f953fe6f970d7991666287340ac489130 URL: https://gitlab.winehq.org/wine/wine/-/commit/71b3d10f953fe6f970d799166628734...
Author: Bernhard Übelacker bernhardu@mailbox.org Date: Tue Nov 14 17:58:12 2023 +0100
uxtheme: Add stub for RefreshImmersiveColorPolicyState.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55898
---
dlls/uxtheme/system.c | 9 +++++++++ dlls/uxtheme/uxtheme.spec | 1 + 2 files changed, 10 insertions(+)
diff --git a/dlls/uxtheme/system.c b/dlls/uxtheme/system.c index f95a5d598ae..adf90a12cfb 100644 --- a/dlls/uxtheme/system.c +++ b/dlls/uxtheme/system.c @@ -1253,6 +1253,15 @@ BOOL WINAPI ThemeHooksRemove(void) return TRUE; }
+/********************************************************************** + * RefreshImmersiveColorPolicyState (UXTHEME.104) + * + */ +void WINAPI RefreshImmersiveColorPolicyState(void) +{ + FIXME("stub\n"); +} + /********************************************************************** * ShouldSystemUseDarkMode (UXTHEME.138) * diff --git a/dlls/uxtheme/uxtheme.spec b/dlls/uxtheme/uxtheme.spec index 1cf8ae7e418..26dc54d5805 100644 --- a/dlls/uxtheme/uxtheme.spec +++ b/dlls/uxtheme/uxtheme.spec @@ -42,6 +42,7 @@ 61 stdcall OpenThemeDataEx(ptr wstr long) 62 stub -noname ServerClearStockObjects 63 stub -noname MarkSelection +104 stdcall -noname RefreshImmersiveColorPolicyState() 132 stdcall -noname ShouldAppsUseDarkMode() 133 stdcall -noname AllowDarkModeForWindow(ptr long) 135 stdcall -noname SetPreferredAppMode(long)