complDlg.h
上传用户:zhuozewu
上传日期:2022-07-26
资源大小:37k
文件大小:2k
源码类别:

串口编程

开发平台:

Visual C++

  1. // complDlg.h : header file
  2. //
  3. #if !defined(AFX_COMPLDLG_H__87A3992B_B0B2_11D4_8A2B_E1E926EF2418__INCLUDED_)
  4. #define AFX_COMPLDLG_H__87A3992B_B0B2_11D4_8A2B_E1E926EF2418__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CComplDlg dialog
  10. class CComplDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CString m_strPort;
  15. int m_nSetupbt;
  16. DCB dcb;
  17. HANDLE hCom;
  18. CComplDlg(CWnd* pParent = NULL); // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CComplDlg)
  21. enum { IDD = IDD_COMPL_DIALOG };
  22. CEdit m_cEditsend;
  23. CButton m_cSetupcomm;
  24. CButton m_cSend;
  25. CButton m_cReseved;
  26. CButton m_cOpencomm;
  27. CButton m_cClosecomm;
  28. UINT m_sReseved;
  29. UINT m_sSend;
  30. int m_sPort;
  31. int m_nBt;
  32. int m_nSETBT;
  33. //}}AFX_DATA
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CComplDlg)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. HICON m_hIcon;
  42. // Generated message map functions
  43. //{{AFX_MSG(CComplDlg)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnPaint();
  46. afx_msg HCURSOR OnQueryDragIcon();
  47. afx_msg void OnReseved();
  48. afx_msg void OnSend();
  49. afx_msg void OnSetupcom();
  50. afx_msg void OnSelchangeBtsetup();
  51. afx_msg void OnClosecomm();
  52. afx_msg void OnOpencomm();
  53. virtual void OnCancel();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_COMPLDLG_H__87A3992B_B0B2_11D4_8A2B_E1E926EF2418__INCLUDED_)