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.

61 lines
893 B

  1. // Copyright (C) 1999 Microsoft Corporation
  2. //
  3. // Safe Mode Administrator password page
  4. //
  5. // 6-3-99 sburns
  6. #ifndef SAFEMODE_HPP_INCLUDED
  7. #define SAFEMODE_HPP_INCLUDED
  8. #include "page.hpp"
  9. #include "PasswordEditBox.hpp"
  10. class SafeModePasswordPage : public DCPromoWizardPage
  11. {
  12. public:
  13. SafeModePasswordPage();
  14. protected:
  15. virtual ~SafeModePasswordPage();
  16. // Dialog overrides
  17. virtual
  18. void
  19. OnInit();
  20. // PropertyPage overrides
  21. virtual
  22. bool
  23. OnSetActive();
  24. // DCPromoWizardPage overrides
  25. virtual
  26. int
  27. Validate();
  28. private:
  29. // not defined; no copying allowed
  30. SafeModePasswordPage(const SafeModePasswordPage&);
  31. const SafeModePasswordPage& operator=(const SafeModePasswordPage&);
  32. // NTRAID#NTBUG9-202238-2000/11/07-sburns
  33. PasswordEditBox password;
  34. PasswordEditBox confirm;
  35. };
  36. #endif // SAFEMODE_HPP_INCLUDED