Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现SetupDiGetDeviceRegistryProperty可以从设备获取属性,但我还没有弄清楚如何获取父属性(您可以在设备管理器中打开设备属性时看到此属性,单击详细信息,然后从属性下拉列表中选择父属性。如何我要从本机 C++ 代码访问该属性吗?
SetupDiGetDeviceRegistryProperty
预定义的 DEVPKEY_Device_Parent guid 是 Parent 属性的键。使用 SetupDiGetDeviceInterfaceProperty() 读取它。
我通过使用得到了它:CM_Get_Parent虽然感谢 Hans,但找到了这个参考,谢谢!
CM_Get_Parent