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.

66 lines
1.1 KiB

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