windows-nt/Source/XPSP1/NT/net/wlbs/nlbmgr/exe/hostportspage.h

49 lines
761 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef HOSTPORTSPAGE_H
#define HOSTPORTSPAGE_H
#include "stdafx.h"
#include "resource.h"
#include "MNLBUIData.h"
#include "CommonNLB.h"
class HostPortsPage : public CPropertyPage
{
public:
enum
{
IDD = IDD_DIALOG_PORTS,
};
HostPortsPage( const _bstr_t& myMachineName,
ClusterData* p_clusterData,
UINT ID = HostPortsPage::IDD );
~HostPortsPage();
// overrides of CPropertyPage
virtual BOOL OnInitDialog();
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
CListCtrl m_portList;
private:
ClusterData* m_clusterData;
void
SetControlData();
_bstr_t machine;
DECLARE_MESSAGE_MAP()
};
#endif