WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS 枚举 (wdfchildlist.h)

[仅适用于 KMDF]

WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS 枚举定义框架存储在驱动程序WDF_CHILD_RETRIEVE_INFO结构中的设备状态值。

语法

typedef enum _WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS {
  WdfChildListRetrieveDeviceUndefined = 0,
  WdfChildListRetrieveDeviceSuccess,
  WdfChildListRetrieveDeviceNotYetCreated,
  WdfChildListRetrieveDeviceNoSuchDevice
} WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS, *PWDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS;

常量

 
WdfChildListRetrieveDeviceUndefined
值: 0
WdfChildListRetrieveDeviceSuccess
WdfChildListRetrieveNextDeviceWdfChildListRetrievePdo 方法已成功检索子设备,并且设备存在框架设备对象。
WdfChildListRetrieveDeviceNotYetCreated
WdfChildListRetrieveNextDeviceWdfChildListRetrievePdo 已成功检索子设备,但尚未为设备 (创建框架设备对象,因为框架尚未调用驱动程序的 EvtChildListCreateDevice 回调函数) 。
WdfChildListRetrieveDeviceNoSuchDevice
WdfChildListRetrieveNextDeviceWdfChildListRetrievePdo 无法检索与搜索条件匹配的子设备。

注解

WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS 枚举用于指定WDF_CHILD_RETRIEVE_INFO结构的 Status 成员。

要求

要求
最低 KMDF 版本 1.0
标头 wdfchildlist.h (包括 Wdf.h)

另请参阅

EvtChildListCreateDevice

WDF_CHILD_RETRIEVE_INFO

WdfChildListRetrieveNextDevice

WdfChildListRetrievePdo