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

📄 gpsdlg.h

📁 一个与串行GPS通信的应用程序源码
💻 H
字号:
// GpsDlg.h : header file
//

#if !defined(AFX_GPSDLG_H__6B4B60B2_5F9B_4E8B_A296_9D3445DC360F__INCLUDED_)
#define AFX_GPSDLG_H__6B4B60B2_5F9B_4E8B_A296_9D3445DC360F__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CGpsDlg dialog

#define WM_HIDEGPSDIALOG	WM_USER+7

class CGpsDlg : public CDialog
{
// Construction
public:
	CGpsDlg(CWnd* pParent = NULL);	// standard constructor
	HANDLE m_hCom;
	int ConfigComm( CString port, int baud );
	DWORD ReadComm(BYTE *buf, DWORD dwLength);
	
	CWinThread* m_pThread; // 代表辅助线程

	OVERLAPPED m_osRead;

	BOOL m_bConnected;
// Dialog Data
	//{{AFX_DATA(CGpsDlg)
	enum { IDD = IDD_GPS_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CGpsDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	//}}AFX_MSG
	afx_msg void OnHide(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_GPSDLG_H__6B4B60B2_5F9B_4E8B_A296_9D3445DC360F__INCLUDED_)

⌨️ 快捷键说明

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