Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1002 B

  1. //------------------------------------------------------------------------
  2. //
  3. // File: shell\themes\test\ctlperf\samples.h
  4. //
  5. // Contents: Declaration of sample control initialization routines,
  6. // taken from ThemeSel by RFernand.
  7. //
  8. // Classes: none
  9. //
  10. //------------------------------------------------------------------------
  11. #pragma once
  12. // Type for variable declarations
  13. typedef void (*PFNINIT)(HWND);
  14. // Tab control
  15. extern void Pickers_Init(HWND hWndCtl);
  16. // Progress bar
  17. extern void Movers_Init(HWND hWndCtl);
  18. // Listbox
  19. extern void Lists_Init(HWND hWndCtl);
  20. // Combo box
  21. extern void Combo_Init(HWND hWndCtl);
  22. // ComboBoxEx
  23. extern void ComboEx_Init(HWND hWndCtl);
  24. // ListView
  25. extern void ListView_Init(HWND hWndCtl);
  26. // Treeview
  27. extern void TreeView_Init(HWND hWndCtl);
  28. // Header
  29. extern void Header_Init(HWND hWndCtl);
  30. // Status bar
  31. extern void Status_Init(HWND hWndCtl);
  32. // Toolbar
  33. extern void Toolbar_Init(HWND hWndCtl);
  34. // Rebar
  35. extern void Rebar_Init(HWND hWndCtl);