📄 gprsdia.h
字号:
//Mobile control class by SkyVense
//If you modified this file, please send a copy to skyvense@online.sh.cn
//Thank you!
//Last modifed 2002-02-29 by SkyVense
// Serial.h
#ifndef _GPRSDIA_H
#define _GPRSDIA_H
#include "Serial.h"
class CGprsDia
{
public:
CGprsDia();
virtual ~CGprsDia();
private:
CSerial m_serial;
public:
LPTSTR CSTRToLPTSTR(CString csStrString);
BOOL OpenPort(LPTSTR ptsPort, LPTSTR ptsBaud );
BOOL ClosePort();
BOOL SendData(LPTSTR ptsBuffer, UINT uiSize );
void ReadData(LPTSTR *pptsBuffer);
void SendATCmd(LPTSTR ptsATCmd);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -