gpscomdlg.h

来自「wince5.0下用evc4.0sp4开发的通过串口读取gps数据,然后通过华为」· C头文件 代码 · 共 70 行

H
70
字号
// GPSCOMDlg.h : header file
//

#if !defined(AFX_GPSCOMDLG_H__4E4628CD_9ED6_4BD8_86FC_D36C572CACEB__INCLUDED_)
#define AFX_GPSCOMDLG_H__4E4628CD_9ED6_4BD8_86FC_D36C572CACEB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "CESeries.h"

/////////////////////////////////////////////////////////////////////////////
// CGPSCOMDlg dialog

class CGPSCOMDlg : public CDialog
{
// Construction
public:
	CString ToUnicode(CString msg);
	CString CGPSCOMDlg::GetPDU(CString SMSText , 
                        CString DestNo ,
                        CString * PDUString ,
                        CString ServiceNo );
	CGPSCOMDlg(CWnd* pParent = NULL);	// standard constructor
// Dialog Data
	//{{AFX_DATA(CGPSCOMDlg)
	enum { IDD = IDD_GPSCOM_DIALOG };
	CString	m_strRecv;
	CString	m_jd;
	CString	m_wd;
	CString	m_strSend;
	CString	m_strServiceNo;
	CString	m_strDestNo;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	CCESeries m_ceSerie;
	// Generated message map functions
	//{{AFX_MSG(CGPSCOMDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnBtnconn();
	afx_msg void OnBtndisconn();
	afx_msg void OnExit();
	afx_msg void OnBtnsave();
	afx_msg void OnBtnconn1();
	afx_msg void OnBtndisconn1();
	afx_msg void OnBtnout();
	afx_msg void OnBtnopen();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CCESeries m_ceSeries; //定义串口类
private:
	static void OnSeriesRead(CWnd* pWnd,BYTE* buf,int bufLen);
};

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

#endif // !defined(AFX_GPSCOMDLG_H__4E4628CD_9ED6_4BD8_86FC_D36C572CACEB__INCLUDED_)

⌨️ 快捷键说明

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