Commit 221e88e2 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

uxtheme: Add stub for SetPreferredAppMode.

parent e1259ff9
......@@ -1290,3 +1290,13 @@ BOOL WINAPI ShouldAppsUseDarkMode(void)
return !light_theme;
}
/**********************************************************************
* SetPreferredAppMode (UXTHEME.135)
*
*/
int WINAPI SetPreferredAppMode(int app_mode)
{
FIXME("%d: stub\n", app_mode);
return 0;
}
......@@ -43,6 +43,7 @@
62 stub -noname ServerClearStockObjects
63 stub -noname MarkSelection
132 stdcall -noname ShouldAppsUseDarkMode()
135 stdcall -noname SetPreferredAppMode(long)
138 stdcall -noname ShouldSystemUseDarkMode()
# Standard functions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment