USB驱动总线关系(虚拟端口号)

发布于 2024-09-07 10:00:16 字数 630 浏览 2 评论 0原文

我想获取usb驱动程序的虚拟端口号。此属性可以在设备管理器名称中作为总线关系或子项找到。

   if (SetupDiGetDeviceRegistryProperty(devInfo,   
                                                 &devInfoData,   
                                                 SPDRP_ADDRESS,   
                                                 NULL,   
                                                 (PBYTE)&dwAddr, //szName,   
                                                 sizeof(dwAddr),   
                                                 NULL))   
            {   

            int len=_stprintf( szBuf2,TEXT("\n%d"), dwAddr);

有谁可以指导一下。

I want to get the virtual port number of usb driver. This property can be found in device manager name as bus relation or children.

   if (SetupDiGetDeviceRegistryProperty(devInfo,   
                                                 &devInfoData,   
                                                 SPDRP_ADDRESS,   
                                                 NULL,   
                                                 (PBYTE)&dwAddr, //szName,   
                                                 sizeof(dwAddr),   
                                                 NULL))   
            {   

            int len=_stprintf( szBuf2,TEXT("\n%d"), dwAddr);

Can anybody guide.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

电影里的梦 2024-09-14 10:00:16

如果您使用的是 Windows Mobile 或 Windows CE,则应在 HKEY_LOCAL_MACHINE\drivers\active 中找到活动驱动程序。枚举活动的驱动程序,直到通过“Key”找到 USB 驱动程序,驱动程序的名称应该是其端口名称,即 USB1 或 COM8 等。

If your on Windows Mobile or Windows CE, you should find the active driver in HKEY_LOCAL_MACHINE\drivers\active. Enumerate down the active drivers till you find the USB driver by "Key" and the name of the driver should be its port name, i.e. USB1 or COM8 etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文