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.

63 lines
1.2 KiB

  1. // Copyright (C) 2001 Microsoft Corporation
  2. //
  3. // verify that the domain of this upgraded BDC has been upgraded to
  4. // Active Directory, and that we can find a DS DC for that domain
  5. // NTRAID#NTBUG9-490197-2001/11/20-sburns
  6. //
  7. // 20 Nov 2001 sburns
  8. #ifndef CHECKDOMAINUPGRADEDPAGE_HPP_INCLUDED
  9. #define CHECKDOMAINUPGRADEDPAGE_HPP_INCLUDED
  10. class CheckDomainUpgradedPage : public DCPromoWizardPage
  11. {
  12. public:
  13. CheckDomainUpgradedPage();
  14. protected:
  15. virtual ~CheckDomainUpgradedPage();
  16. // Dialog overrides
  17. // virtual
  18. // bool
  19. // OnNotify(
  20. // HWND windowFrom,
  21. // UINT_PTR controlIDFrom,
  22. // UINT code,
  23. // LPARAM lParam);
  24. virtual
  25. void
  26. OnInit();
  27. // PropertyPage overrides
  28. virtual
  29. bool
  30. OnSetActive();
  31. // DCPromoWizardPage overrides
  32. virtual
  33. int
  34. Validate();
  35. private:
  36. bool
  37. CheckDsDcFoundAndUpdatePageText();
  38. // not defined; no copying allowed
  39. CheckDomainUpgradedPage(const CheckDomainUpgradedPage&);
  40. const CheckDomainUpgradedPage& operator=(const CheckDomainUpgradedPage&);
  41. };
  42. #endif // CHECKDOMAINUPGRADEDPAGE_HPP_INCLUDED{