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.

58 lines
875 B

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