• 大小: 8KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: 其他
  • 标签:

资源简介

在原来的CserialPort的基础上进行了一些修改,使其支持Unicode编码,同时改正了原代码在初始化串口时DCB结构体初始化错误的问题。

资源截图

代码片段和文件信息

/*
** FILENAME CSerialPort.cpp
**
** PURPOSE This class can read write and watch one serial port.
** It sends messages to its owner when something happends on the port
** The class creates a thread for reading and writing so the main
** program is not blocked.
**
** CREATION DATE 15-09-1997
** LAST MODIFICATION 12-11-1997
**
** AUTHOR Remon Spekreijse
**
**
*/

#include “stdafx.h“
#include “SerialPort.h“

#include 
 
//
// Constructor
//
CSerialPort::CSerialPort()
{
m_hComm = NULL;

// initialize overlapped structure members to zero
m_ov.Offset = 0;
m_ov.OffsetHigh = 0;

// create events
m_ov.hEvent = NULL;
m_hWriteEvent = NULL;
m_hShutdownEvent = NULL;

m_szWriteBuffer = NULL;

m_bThreadAlive = FALSE;
m_

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4340  2013-11-19 20:50  SerialPort.h

     文件      21801  2013-11-19 21:03  SerialPort.cpp

----------- ---------  ---------- -----  ----

                26141                    2


评论

共有 条评论

相关资源