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

📄 gpscomdlg.h

📁 wince5.0下用evc4.0sp4开发的通过串口读取gps数据,然后通过华为的gtm900gprs模块发送sms短信
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -