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.

53 lines
852 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // replica or new domain page
  4. //
  5. // 12-19-97 sburns
  6. #ifndef REPLICAORNEWDOMAINPAGE_HPP_INCLUDED
  7. #define REPLICAORNEWDOMAINPAGE_HPP_INCLUDED
  8. class ReplicaOrNewDomainPage : public DCPromoWizardPage
  9. {
  10. public:
  11. ReplicaOrNewDomainPage();
  12. protected:
  13. virtual ~ReplicaOrNewDomainPage();
  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. ReplicaOrNewDomainPage(const ReplicaOrNewDomainPage&);
  29. const ReplicaOrNewDomainPage& operator=(const ReplicaOrNewDomainPage&);
  30. HICON warnIcon;
  31. };
  32. #endif // REPLICAORNEWDOMAINPAGE_HPP_INCLUDED