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.

72 lines
1.3 KiB

  1. // Copyright (c) 2002 Microsoft Corporation
  2. //
  3. // File: UninstallMilestonePage.h
  4. //
  5. // Synopsis: Declares the UninstallMilestone Page for the CYS
  6. // wizard
  7. //
  8. // History: 01/24/2002 JeffJon Created
  9. #ifndef __CYS_UNINSTALLMILESTONEPAGE_H
  10. #define __CYS_UNINSTALLMILESTONEPAGE_H
  11. #include "CYSWizardPage.h"
  12. class UninstallMilestonePage : public CYSWizardPage
  13. {
  14. public:
  15. // Constructor
  16. UninstallMilestonePage();
  17. // Destructor
  18. virtual
  19. ~UninstallMilestonePage();
  20. protected:
  21. // Dialog overrides
  22. virtual
  23. void
  24. OnInit();
  25. // PropertyPage overrides
  26. virtual
  27. bool
  28. OnSetActive();
  29. bool
  30. OnCommand(
  31. HWND windowFrom,
  32. unsigned controlIDFrom,
  33. unsigned code);
  34. protected:
  35. // CYSWizardPage overrides
  36. virtual
  37. int
  38. Validate();
  39. private:
  40. void
  41. OpenLogFile(const String& logName);
  42. void
  43. TimeStampTheLog(HANDLE logfileHandle);
  44. bool needKillSelection;
  45. // not defined: no copying allowed
  46. UninstallMilestonePage(const UninstallMilestonePage&);
  47. const UninstallMilestonePage& operator=(const UninstallMilestonePage&);
  48. };
  49. #endif // __CYS_UNINSTALLMILESTONEPAGE_H