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.

63 lines
873 B

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