enumerasi WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS (wdfchildlist.h)

[Hanya berlaku untuk KMDF]

Enumerasi WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS menentukan nilai status perangkat yang disimpan kerangka kerja dalam struktur WDF_CHILD_RETRIEVE_INFO driver.

Sintaks

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;

Konstanta

 
WdfChildListRetrieveDeviceUndefined
Nilai: 0
WdfChildListRetrieveDeviceSuccess
Metode WdfChildListRetrieveNextDevice atau WdfChildListRetrievePdo berhasil mengambil perangkat anak, dan objek perangkat kerangka kerja ada untuk perangkat.
WdfChildListRetrieveDeviceNotYetCreated
WdfChildListRetrieveNextDevice atau WdfChildListRetrievePdo berhasil mengambil perangkat anak, tetapi objek perangkat kerangka kerja belum dibuat untuk perangkat (karena kerangka kerja belum memanggil fungsi panggilan balik EvtChildListCreateDevice driver).
WdfChildListRetrieveDeviceNoSuchDevice
WdfChildListRetrieveNextDevice atau WdfChildListRetrievePdo tidak dapat mengambil perangkat anak yang cocok dengan kriteria pencarian.

Keterangan

Enumerasi WDF_CHILD_LIST_RETRIEVE_DEVICE_STATUS digunakan untuk menentukan anggota Status dari struktur WDF_CHILD_RETRIEVE_INFO .

Persyaratan

Persyaratan Nilai
Versi KMDF minimum 1,0
Header wdfchildlist.h (termasuk Wdf.h)

Lihat juga

EvtChildListCreateDevice

WDF_CHILD_RETRIEVE_INFO

WdfChildListRetrieveNextDevice

WdfChildListRetrievePdo