1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #if !defined(AFX_CHANNELINFO_H__E4E18B27_C237_4B6C_BB36_F1E140F58363__INCLUDED_)
- #define AFX_CHANNELINFO_H__E4E18B27_C237_4B6C_BB36_F1E140F58363__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // ChannelInfo.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CChannelInfo dialog
- class CChannelInfo : public CDialog
- {
- // Construction
- public:
- CChannelInfo(CWnd* pParent = NULL); // standard constructor
- int m_iServerNum;
- int m_iChannelNum;
- // Dialog Data
- //{{AFX_DATA(CChannelInfo)
- enum { IDD = IDD_DIALOG_CHANNELINFO };
- CComboBox m_protocoltype;
- CComboBox m_protocol;
- CString m_channame;
- int m_channo;
- CString m_serverip;
- CString m_servername;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CChannelInfo)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CChannelInfo)
- virtual BOOL OnInitDialog();
- afx_msg void On_Ok();
- afx_msg void On_Cancel();
- virtual void OnCancel();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_CHANNELINFO_H__E4E18B27_C237_4B6C_BB36_F1E140F58363__INCLUDED_)
|