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.

50 lines
654 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // failure page
  4. //
  5. // 12-22-97 sburns
  6. #ifndef FAILUREPAGE_HPP_INCLUDED
  7. #define FAILUREPAGE_HPP_INCLUDED
  8. class FailurePage : public DCPromoWizardPage
  9. {
  10. public:
  11. FailurePage();
  12. protected:
  13. virtual ~FailurePage();
  14. // Dialog overrides
  15. virtual
  16. void
  17. OnInit();
  18. // PropertyPage overrides
  19. virtual
  20. bool
  21. OnSetActive();
  22. // DCPromoWizardPage overrides
  23. virtual
  24. int
  25. Validate();
  26. private:
  27. // not defined; no copying allowed
  28. FailurePage(const FailurePage&);
  29. const FailurePage& operator=(const FailurePage&);
  30. };
  31. #endif // FAILUREPAGE_HPP_INCLUDED