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.

48 lines
761 B

  1. #ifndef HOSTPORTSPAGE_H
  2. #define HOSTPORTSPAGE_H
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. #include "MNLBUIData.h"
  6. #include "CommonNLB.h"
  7. class HostPortsPage : public CPropertyPage
  8. {
  9. public:
  10. enum
  11. {
  12. IDD = IDD_DIALOG_PORTS,
  13. };
  14. HostPortsPage( const _bstr_t& myMachineName,
  15. ClusterData* p_clusterData,
  16. UINT ID = HostPortsPage::IDD );
  17. ~HostPortsPage();
  18. // overrides of CPropertyPage
  19. virtual BOOL OnInitDialog();
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21. CListCtrl m_portList;
  22. private:
  23. ClusterData* m_clusterData;
  24. void
  25. SetControlData();
  26. _bstr_t machine;
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. #endif