VC++
yanghuiysz
这个作者很懒,什么都没留下…
展开
-
VC++ 文件读取并在CListControl上展示
VC++中对文件读取操作获取文件的pathvoid getPath(){ char filepath[256], sDrive[256], sDir[256], sFname[256], sExt[256], pStrPath[256]; GetModuleFileName(AfxGetInstanceHandle(), filepath, 256); _tsplitpath原创 2016-11-11 11:04:33 · 932 阅读 · 0 评论 -
VC++获取计算机串口
void Get_serialport(){ HKEY hKey; if (::RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Hardware\\DeviceMap\\SerialComm", NULL, KEY_READ, &hKey) == ERROR_SUCCESS){// 打开串口注册表 int i = 0;原创 2016-11-14 21:58:58 · 1235 阅读 · 0 评论