NAME

ApplyTheme  (UXTHEME.4)

SYNOPSIS

 HRESULT ApplyTheme
 (
  HTHEMEFILE hThemeFile,
  char*      unknown,
  HWND       hWnd
 )

DESCRIPTION

Set a theme file to be the currently active theme.

PARAMS

hThemeFile Handle to theme file
unknown See notes
hWnd Window requesting the theme change.

RETURNS

Success: S_OK

Failure: HRESULT error-code.

NOTES

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

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress to obtain a pointer to the function.

Implemented in "dlls/uxtheme/system.c". https://source.winehq.org/source/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 Apr 2024.