Comm.h
上传用户:ynthgy
上传日期:2022-06-13
资源大小:1580k
文件大小:0k
源码类别:

手机短信编程

开发平台:

Visual C++

  1. // Comm.h: interface for the CComm class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(COMM_H__)
  5. #define COMM_H__
  6. #include <windows.h>
  7. //打开串口
  8. BOOL OpenComm(const char* pPort, int nBaudRate=115200, int nParity=NOPARITY, int nByteSize=8, int nStopBits=ONESTOPBIT);
  9. //关闭串口
  10. BOOL CloseComm();
  11. //写串口
  12. void WriteComm(void* pData, int nLength);
  13. //读串口
  14. int ReadComm(void* pData, int nLength);
  15. #endif // !defined(COMM_H__)