Leaked source code of windows server 2003
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.

60 lines
1.4 KiB

  1. /*
  2. **------------------------------------------------------------------------------
  3. ** Module: Disk Space Cleanup Property Sheets
  4. ** File: dmgrdlg.h
  5. **
  6. ** Purpose: Implements Disk Space Cleanup Dialog Property Sheets
  7. ** Notes:
  8. ** Mod Log: Created by Jason Cobb (2/97)
  9. **
  10. ** Copyright (c)1997 Microsoft Corporation, All Rights Reserved
  11. **------------------------------------------------------------------------------
  12. */
  13. #ifndef DMGRDLG_H
  14. #define DMGRDLG_H
  15. /*
  16. **------------------------------------------------------------------------------
  17. ** Project include files
  18. **------------------------------------------------------------------------------
  19. */
  20. #ifndef COMMON_H
  21. #include "common.h"
  22. #endif
  23. /*
  24. **------------------------------------------------------------------------------
  25. ** Global function prototypes
  26. **------------------------------------------------------------------------------
  27. */
  28. DWORD
  29. DisplayCleanMgrProperties(
  30. HWND hWnd,
  31. LPARAM lParam
  32. );
  33. INT_PTR CALLBACK
  34. DiskCleanupManagerProc(
  35. HWND hDlg,
  36. UINT uMessage,
  37. WPARAM wParam,
  38. LPARAM lParam
  39. );
  40. //void
  41. //CleanupMgrUpdateUI(
  42. // HWND hDlg
  43. // );
  44. HWND
  45. GetDiskCleanupManagerWindowHandle(
  46. void
  47. );
  48. #endif // DMGRDLG_H
  49. /*
  50. **------------------------------------------------------------------------------
  51. ** End of file
  52. **------------------------------------------------------------------------------
  53. */