WdfChildListGetDevice 函数 (wdfchildlist.h)
[仅适用于 KMDF]
WdfChildListGetDevice 方法返回表示指定子列表的父设备的框架设备对象的句柄。
语法
WDFDEVICE WdfChildListGetDevice(
[in] WDFCHILDLIST ChildList
);
参数
[in] ChildList
框架子列表对象的句柄。
返回值
WdfChildListGetDevice 返回框架设备对象的句柄。
如果驱动程序提供无效的对象句柄,则会发生系统 bug 检查。
注解
有关子列表的详细信息,请参阅 动态枚举。
示例
下面的代码示例获取表示子列表的父设备的设备对象的句柄。
WDFDEVICE parentDevice;
parentDevice = WdfChildListGetDevice(ChildList);
要求
要求 | 值 |
---|---|
目标平台 | 通用 |
最低 KMDF 版本 | 1.0 |
标头 | wdfchildlist.h (包括 Wdf.h) |
Library | Wdf01000.sys (请参阅框架库 Versioning.) |
IRQL | <= DISPATCH_LEVEL |
DDI 符合性规则 | DriverCreate (kmdf) 、 KmdfIrql (kmdf) 、 KmdfIrql2 (kmdf) 、 KmdfIrqlExplicit (kmdf) |