| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // RFDlg.h : header file
- //
- #if !defined(AFX_RFDLG_H__542A6158_9B38_4874_8AEA_4D74833E52E4__INCLUDED_)
- #define AFX_RFDLG_H__542A6158_9B38_4874_8AEA_4D74833E52E4__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- /////////////////////////////////////////////////////////////////////////////
- // CRFDlg dialog
- class CRFDlg : public CDialog
- {
- // Construction
- public:
- CRFDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CRFDlg)
- enum { IDD = IDD_RF_DIALOG };
- CComboBox m_sector;
- CComboBox m_mode;
- CComboBox m_port;
- CComboBox m_baud;
- CListBox m_list;
- CString m_data;
- CString m_key;
- CString m_cmd;
- //}}AFX_DATA
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRFDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- HICON m_hIcon;
- // Generated message map functions
- //{{AFX_MSG(CRFDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnButtonConnect();
- afx_msg void OnButtonExit();
- afx_msg void OnButtonCard();
- afx_msg void OnButtonCheckkey();
- afx_msg void OnButtonRead();
- afx_msg void OnButtonWrite();
- afx_msg void OnButtonRead2();
- afx_msg void OnButtonCpucard();
- afx_msg void OnButtonReset();
- afx_msg void OnButtonCmd();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_RFDLG_H__542A6158_9B38_4874_8AEA_4D74833E52E4__INCLUDED_)
|