// ConnList.h : header file // #include "structs.h" ///////////////////////////////////////////////////////////////////////////// // CConnectList dialog class CConnectList : public CDialog { // Construction public: CConnectList(CWnd* pParent = NULL); // standard constructor CString m_strHostAddress; short m_nHostPort; CString m_strPeerAddress; short m_nPeerPort; CString m_strCalling; CString m_strCalled; int m_nConnection; pNETCONNECTION m_pConnection; long m_nTimeout; short m_nIndex; // Dialog Data //{{AFX_DATA(CConnectList) enum { IDD = IDD_CLTCONN_DIALOG }; CListCtrl m_Connections; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CConnectList) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CConnectList) virtual BOOL OnInitDialog(); virtual void OnOK(); afx_msg void OnInsert(); afx_msg void OnModify(); afx_msg void OnDelete(); afx_msg void OnDblclkConnections(NMHDR* pNMHDR, LRESULT* pResult); //}}AFX_MSG DECLARE_MESSAGE_MAP() };