多线程程序调试运行出错Unhandled exception
1、解决方案:m_hFH463CommI句柄改成全局变量。
在stdafx.h文件中定义全局变量
extern HANDLE g_hFH463CommI; //串口句柄
stdafx.cpp
HANDLE g_hFH463CommI; //串口句柄
然后给全局变量赋值
g_hFH463CommI=m_hFH463CommI;
WriteFile(g_hFH463CommI, ch, sizeof(ch), &dwactlen, NULL) ;
阅读量:126
阅读量:26
阅读量:192
阅读量:106
阅读量:49