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.

66 lines
700 B

  1. /*++
  2. Copyright (c) 1990-1995 Microsoft Corporation
  3. Module Name:
  4. tvctrl.h
  5. Abstract:
  6. This module contains all defineds for the treeview
  7. Author:
  8. 17-Oct-1995 Tue 16:39:11 created -by- Daniel Chou (danielc)
  9. [Environment:]
  10. NT Windows - Common Printer Driver UI DLL
  11. [Notes:]
  12. Revision History:
  13. --*/
  14. #define MAGIC_INDENT 3
  15. VOID
  16. DeleteTVFonts(
  17. PTVWND pTVWnd
  18. );
  19. BOOL
  20. CreateTVFonts(
  21. PTVWND pTVWnd,
  22. HFONT hTVFont
  23. );
  24. LRESULT
  25. CALLBACK
  26. MyTVWndProc(
  27. HWND hWnd,
  28. UINT Msg,
  29. WPARAM wParam,
  30. LPARAM lParam
  31. );
  32. LRESULT
  33. CALLBACK
  34. FocusCtrlProc(
  35. HWND hWnd,
  36. UINT Msg,
  37. WPARAM wParam,
  38. LPARAM lParam
  39. );