diff options
Diffstat (limited to 'src/dutil/inc')
-rw-r--r-- | src/dutil/inc/thmutil.h | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/dutil/inc/thmutil.h b/src/dutil/inc/thmutil.h index 4d52fa69..e661a6cb 100644 --- a/src/dutil/inc/thmutil.h +++ b/src/dutil/inc/thmutil.h | |||
@@ -354,12 +354,30 @@ HRESULT DAPI ThemeRegisterVariableCallbacks( | |||
354 | ); | 354 | ); |
355 | 355 | ||
356 | /******************************************************************** | 356 | /******************************************************************** |
357 | ThemeLoadControls - creates the windows for all the theme controls. | 357 | ThemeCreateParentWindow - creates a parent window for the theme. |
358 | |||
359 | *******************************************************************/ | ||
360 | HRESULT DAPI ThemeCreateParentWindow( | ||
361 | __in THEME* pTheme, | ||
362 | __in DWORD dwExStyle, | ||
363 | __in LPCWSTR szClassName, | ||
364 | __in LPCWSTR szWindowName, | ||
365 | __in DWORD dwStyle, | ||
366 | __in int x, | ||
367 | __in int y, | ||
368 | __in_opt HWND hwndParent, | ||
369 | __in_opt HINSTANCE hInstance, | ||
370 | __in_opt LPVOID lpParam, | ||
371 | __out_opt HWND* phWnd | ||
372 | ); | ||
373 | |||
374 | /******************************************************************** | ||
375 | ThemeLoadControls - creates the windows for all the theme controls | ||
376 | using the window created in ThemeCreateParentWindow. | ||
358 | 377 | ||
359 | *******************************************************************/ | 378 | *******************************************************************/ |
360 | HRESULT DAPI ThemeLoadControls( | 379 | HRESULT DAPI ThemeLoadControls( |
361 | __in THEME* pTheme, | 380 | __in THEME* pTheme, |
362 | __in HWND hwndParent, | ||
363 | __in_ecount_opt(cAssignControlIds) const THEME_ASSIGN_CONTROL_ID* rgAssignControlIds, | 381 | __in_ecount_opt(cAssignControlIds) const THEME_ASSIGN_CONTROL_ID* rgAssignControlIds, |
364 | __in DWORD cAssignControlIds | 382 | __in DWORD cAssignControlIds |
365 | ); | 383 | ); |