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
974 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // dns client configuration page
  4. //
  5. // 12-22-97 sburns
  6. #ifndef CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED
  7. #define CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED
  8. class ConfigureDnsClientPage : public DCPromoWizardPage
  9. {
  10. public:
  11. ConfigureDnsClientPage();
  12. protected:
  13. virtual ~ConfigureDnsClientPage();
  14. // Dialog overrides
  15. virtual
  16. bool
  17. OnNotify(
  18. HWND windowFrom,
  19. UINT_PTR controlIDFrom,
  20. UINT code,
  21. LPARAM lParam);
  22. virtual
  23. void
  24. OnInit();
  25. // PropertyPage overrides
  26. virtual
  27. bool
  28. OnSetActive();
  29. // DCPromoWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. private:
  34. // not defined; no copying allowed
  35. ConfigureDnsClientPage(const ConfigureDnsClientPage&);
  36. const ConfigureDnsClientPage& operator=(const ConfigureDnsClientPage&);
  37. };
  38. #endif // CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED