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.

58 lines
828 B

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