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.

70 lines
1.1 KiB

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: NetworkServerPage.h
  4. //
  5. // Synopsis: Declares the Network Server Page for the CYS
  6. // wizard
  7. //
  8. // History: 02/06/2001 JeffJon Created
  9. #ifndef __CYS_NETWORKSERVERPAGE_H
  10. #define __CYS_NETWORKSERVERPAGE_H
  11. #include "CYSWizardPage.h"
  12. class NetworkServerPage : public CYSWizardPage
  13. {
  14. public:
  15. // Constructor
  16. NetworkServerPage();
  17. // Destructor
  18. virtual
  19. ~NetworkServerPage();
  20. // Dialog overrides
  21. virtual
  22. void
  23. OnInit();
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. protected:
  29. // Message handlers
  30. bool
  31. OnCommand(
  32. HWND windowFrom,
  33. unsigned controlIDFrom,
  34. unsigned code);
  35. // CYSWizardPage overrides
  36. virtual
  37. int
  38. Validate();
  39. void
  40. SetWizardButtons();
  41. private:
  42. // not defined: no copying allowed
  43. NetworkServerPage(const NetworkServerPage&);
  44. const NetworkServerPage& operator=(const NetworkServerPage&);
  45. };
  46. #endif // __CYS_NETWORKSERVERPAGE_H