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.

56 lines
714 B

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