BCB版的串列埠列舉2

2021-08-15 07:39:36 字數 742 閱讀 6177

又無意中看到 mfc實現的串列埠通訊助手 中的一段列舉串列埠**,拿過來幾乎不改動就可以在bcb6.0裡執行了,可是會顯示個com0出來,斷點測試原程式有個小bug,見如下:

osversioninfo osvi;

osvi.dwosversioninfosize = sizeof(osversioninfo);

bool bgetver = getversionex(&osvi);

if(bgetver && (osvi.dwplatformid == ver_platform_win32_nt))

// go to next null character

while(szdevices[i] != _t('\0'))

i++;

// bump pointer to the next string

i++;

// the list is double-null terminated, so if the character is

// now null, we're at the end

if(szdevices[i] == _t('\0'))

break;}}

//else

// trace(_t("failed in call to querydosdevice, getlasterror:%d\n"), getlasterror());

}

BCB版的串列埠列舉

做自控近20年,脫離不了串列埠通訊。原來需要獲取電腦的串列埠時,採用的是讀取登錄檔法,一直以來也使用正常。除非電腦系統問題造成多餘的虛擬串列埠或usb串口號,清理下登錄檔即可 hkey local machine system currentcontrolset control com name a...

列舉串列埠2

以下是c builder下除錯過的兩種列舉系統串列埠的 函式名 getserialportsreg 說 明 通過登錄檔列舉系統串列埠數量,並列出所有串列埠的系統名 參 數 pliststr,串列埠名稱列表 返回值 int,系統串列埠個數 int getserialportsreg char plis...

列舉系統的串列埠

專案裡 要列舉出系統的串列埠,查了下,登錄檔比較麻煩,用這個方法最方便。原 出處在這裡。unicode下 在這裡 標頭檔案包含 include enumserial.h 同時專案裡新增 setupapi.lib h檔案裡新增 int m nserialportnum 串列埠計數 cstring m ...