Comm.h
上传用户:hcymiss
上传日期:2009-09-17
资源大小:121k
文件大小:0k
源码类别:

手机短信编程

开发平台:

Visual C++

  1. // Comm.h: interface for the CComm class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(COMM_H__)
  5. #define COMM_H__
  6. BOOL OpenComm(const char* pPort, int nBaudRate=57600, int nParity=NOPARITY, int nByteSize=8, int nStopBits=ONESTOPBIT);
  7. BOOL CloseComm();
  8. int ReadComm(void* pData, int nLength);
  9. int WriteComm(void* pData, int nLength);
  10. #endif // !defined(COMM_H__)