⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comdlg.h

📁 本程序是通过串口
💻 H
字号:
// comDlg.h : header file
//

#if !defined(AFX_COMDLG_H__96E7FC03_A160_43AC_8EBC_55E8F2B22914__INCLUDED_)
#define AFX_COMDLG_H__96E7FC03_A160_43AC_8EBC_55E8F2B22914__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CComDlg dialog

class CComDlg : public CDialog
{
// Construction
public:
	DWORD ReadComm(char *buf, DWORD dwLength);
	BOOL ConfigConnect();
	HANDLE h_com;
	CComDlg(CWnd* pParent = NULL);	// standard constructor
//串口部分
	CWinThread *m_pThread;				//辅助线程
	volatile BOOL m_bConnected;			//串口连接标志
	volatile HANDLE m_hPostMsgEvent;	// 用于WM_COMMNOTIFY消息的事件对象
	OVERLAPPED m_osRead, m_osWrite;		// 用于重叠读/写

// Dialog Data
	//{{AFX_DATA(CComDlg)
	enum { IDD = IDD_COM_DIALOG };
	CEdit	m_receive;
	CComboBox	m_bord;
	CComboBox	m_port;
	CString	m_send;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CComDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CComDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnConnect();
	afx_msg void OnSend();
	afx_msg void OnButton4();
	afx_msg void OnButton5();
	afx_msg void OnButton2();
	afx_msg void OnButton6();
	afx_msg void OnButton7();
	afx_msg void OnLeft();
	afx_msg void OnRight();
	afx_msg void OnMiddle();
	afx_msg void OnForword();
	afx_msg void OnBackoff();
	afx_msg void OnStop();
	//}}AFX_MSG
	afx_msg LRESULT OnCommNotify(WPARAM wParam, LPARAM lParam);
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_COMDLG_H__96E7FC03_A160_43AC_8EBC_55E8F2B22914__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -