• 大小: 9.08KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: 接口  编程  COM  

资源简介

COM接口编程

资源截图

代码片段和文件信息

// SerialPort.cpp : 定义控制台应用程序的入口点。
//

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

int _tmain(int argc _TCHAR* argv[])
{

CSerialPort mySerialPort;

if (!mySerialPort.InitPort(2))
{
std::cout << “initPort fail !“ << std::endl;
}
else
{
std::cout << “initPort success !“ << std::endl;
}

if (!mySerialPort.OpenListenThread())
{
std::cout << “OpenListenThread fail !“ << std::endl;
}
else
{
std::cout << “OpenListenThread success !“ << std::endl;
}

int temp;
std::cin >> temp;

return 0;
}

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

     文件        582  2019-05-26 10:58  SerialPort\SerialPort\main.cpp

     文件       1531  2019-05-26 10:55  SerialPort\SerialPort\ReadMe.txt

     文件       8041  2019-05-26 10:57  SerialPort\SerialPort\SerialPort.cpp

     文件       3781  2019-05-26 10:58  SerialPort\SerialPort\SerialPort.h

     文件       8122  2019-05-26 10:58  SerialPort\SerialPort\SerialPort.vcxproj

     文件       1497  2019-05-26 10:58  SerialPort\SerialPort\SerialPort.vcxproj.filters

     文件        214  2019-05-26 10:55  SerialPort\SerialPort\stdafx.cpp

     文件        234  2019-05-26 10:55  SerialPort\SerialPort\stdafx.h

     文件        240  2019-05-26 10:55  SerialPort\SerialPort\targetver.h

     文件       1312  2019-05-26 10:55  SerialPort\SerialPort.sln

     目录          0  2019-05-26 10:58  SerialPort\SerialPort

     目录          0  2019-05-26 10:58  SerialPort

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

                25554                    12


评论

共有 条评论