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.

68 lines
1.2 KiB

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // Confirm removal of Application Partitions page
  4. //
  5. // 26 Jul 2001 sburns
  6. #ifndef APPLICATIONPARTITIONCONFIRMATIONPAGE_HPP_INCLUDED
  7. #define APPLICATIONPARTITIONCONFIRMATIONPAGE_HPP_INCLUDED
  8. #include "page.hpp"
  9. class ApplicationPartitionConfirmationPage : public DCPromoWizardPage
  10. {
  11. public:
  12. ApplicationPartitionConfirmationPage();
  13. protected:
  14. virtual ~ApplicationPartitionConfirmationPage();
  15. // Dialog overrides
  16. virtual
  17. void
  18. OnInit();
  19. bool
  20. OnCommand(
  21. HWND windowFrom,
  22. unsigned controlIDFrom,
  23. unsigned code);
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. // DCPromoWizardPage overrides
  29. virtual
  30. int
  31. Validate();
  32. private:
  33. void
  34. Enable();
  35. // not defined; no copying allowed
  36. ApplicationPartitionConfirmationPage(
  37. const ApplicationPartitionConfirmationPage&);
  38. const ApplicationPartitionConfirmationPage&
  39. operator=(const ApplicationPartitionConfirmationPage&);
  40. };
  41. #endif // APPLICATIONPARTITIONCONFIRMATIONPAGE_HPP_INCLUDED