从SetupDiGetClassDevs获取设备接口

发布于 2024-10-17 08:32:32 字数 113 浏览 1 评论 0原文

是否有可能以某种方式从 SetupDiGetClassDevs 函数或相关函数获取与 CreateFile 一起使用的接口字符串?我必须扫描连接到计算机的设备。

is it possible to somehow get interface string for using with CreateFile from SetupDiGetClassDevs function or related functions? I have to scan for my devices connected to computer.

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

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

发布评论

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

评论(1

菊凝晚露 2024-10-24 08:32:32

对于从 SetupDiGetClassDevs 返回的每个设备,您需要使用 SetupDiEnumDeviceInterfaces 枚举设备接口,然后使用 SetupDiGetDeviceInterfaceDetail 检索详细数据。由 SetupDiGetDeviceInterfaceDetail 填充的 SP_DEVICE_INTERFACE_DETAIL_DATA 结构包含正确的 CreateFile 路径。

For each device returned from SetupDiGetClassDevs, you need to enumerate device interfaces using SetupDiEnumDeviceInterfaces, and then retrieve detail data using SetupDiGetDeviceInterfaceDetail. The SP_DEVICE_INTERFACE_DETAIL_DATA structure filled in by SetupDiGetDeviceInterfaceDetail contains the correct CreateFile path.

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