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 WdfChildListRetrieveNextDevice 或 WdfChildListRetrievePdo 方法已成功检索子设备,并且设备存在框架设备对象。 |
WdfChildListRetrieveDeviceNotYetCreated WdfChildListRetrieveNextDevice 或 WdfChildListRetrievePdo 已成功检索子设备,但尚未为设备 (创建框架设备对象,因为框架尚未调用驱动程序的 EvtChildListCreateDevice 回调函数) 。 |
WdfChildListRetrieveDeviceNoSuchDevice WdfChildListRetrieveNextDevice 或 WdfChildListRetrievePdo 无法检索与搜索条件匹配的子设备。 |
注解
WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS 枚举用于指定WDF_CHILD_RETRIEVE_INFO结构的 Status 成员。
要求
要求 | 值 |
---|---|
最低 KMDF 版本 | 1.0 |
标头 | wdfchildlist.h (包括 Wdf.h) |