WdfFdoLockStaticChildListForIteration 函数 (wdffdo.h)
[仅适用于 KMDF]
WdfFdoLockStaticChildListForIteration 方法准备框架,以便从属于指定父设备的静态子列表中检索项。
语法
void WdfFdoLockStaticChildListForIteration(
[in] WDFDEVICE Fdo
);
参数
[in] Fdo
表示父设备的框架设备对象的句柄。
返回值
无
备注
如果驱动程序提供无效的对象句柄,则会发生 bug 检查。
使用静态总线枚举的总线驱动程序可以调用 WdfFdoLockStaticChildListForIteration。
调用 WdfFdoLockStaticChildListForIteration 后,驱动程序可以重复调用 WdfFdoRetrieveNextStaticChild 以获取有关子列表中每个子设备的信息。
驱动程序调用 WdfFdoRetrieveNextStaticChild 后,必须调用 WdfFdoUnlockStaticChildListFromIteration。
如果驱动程序在调用 WdfFdoLockStaticChildListForIteration 后对子列表进行更改,框架将存储所有更改,并在驱动程序调用 WdfFdoUnlockStaticChildListFromIteration 时通知即插即用 (PnP) 管理器。
驱动程序可以嵌套对 WdfFdoLockStaticChildListForIteration 和 WdfFdoUnlockStaticChildListFromIteration 的调用。 如果驱动程序嵌套对这些方法的调用,框架将存储所有更改,直到最后一次调用 WdfFdoUnlockStaticChildListFromIteration。
有关静态子列表的详细信息,请参阅 静态枚举。
示例
有关使用 WdfFdoLockStaticChildListForIteration 的代码示例,请参阅 WdfFdoRetrieveNextStaticChild。
要求
要求 | 值 |
---|---|
目标平台 | 通用 |
最低 KMDF 版本 | 1.0 |
标头 | wdffdo.h (包括 Wdf.h) |
Library | Wdf01000.sys (请参阅框架库 Versioning.) |
IRQL | <= DISPATCH_LEVEL |
DDI 符合性规则 | DriverCreate (kmdf) 、 KmdfIrql (kmdf) 、 KmdfIrql2 (kmdf) 、 KmdfIrqlExplicit (kmdf) |