ApplyTheme (UXTHEME.4)
HRESULT ApplyTheme ( HTHEMEFILE hThemeFile, char* unknown, HWND hWnd )
Set a theme file to be the currently active theme.
hThemeFile Handle to theme file |
unknown See notes |
hWnd Window requesting the theme change. |
Success: S_OK
Failure: HRESULT error-code.
I'm not sure what the second parameter is (the datatype is likely wrong), other then this: Under XP if I pass char b[] = ""; the theme is applied with the screen redrawing really badly (flickers) char b[] = "\0"; where \0 can be one or more of any character, makes no difference the theme is applied smoothly (screen does not flicker) char *b = "\0" or NULL; where \0 can be zero or more of any character, makes no difference the function fails returning invalid parameter... very strange
Exported by ordinal only. Use GetProcAddress to obtain a pointer to the function.
Implemented in "dlls/uxtheme/system.c". gitlab.winehq.org/wine/wine/blob/master/dlls/uxtheme/system.c
Debug channel "uxtheme".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.