Comm.h
资源名称:msgctrl.rar [点击查看]
上传用户:ynthgy
上传日期:2022-06-13
资源大小:1580k
文件大小:0k
源码类别:
手机短信编程
开发平台:
Visual C++
- // Comm.h: interface for the CComm class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(COMM_H__)
- #define COMM_H__
- #include <windows.h>
- //打开串口
- BOOL OpenComm(const char* pPort, int nBaudRate=115200, int nParity=NOPARITY, int nByteSize=8, int nStopBits=ONESTOPBIT);
- //关闭串口
- BOOL CloseComm();
- //写串口
- void WriteComm(void* pData, int nLength);
- //读串口
- int ReadComm(void* pData, int nLength);
- #endif // !defined(COMM_H__)