Condividi tramite


EVT_WDF_DEVICE_PNP_STATE_CHANGE_NOTIFICATION funzione di callback (wdfdevice.h)

[Si applica solo a KMDF]

Nota

Questa funzione di callback è solo per l'uso interno di Microsoft.

La funzione di callback dell'evento EvtDevicePnpStateChange di un driver informa il driver che la Plug and Play (PnP) di un dispositivo viene spostata da uno stato a un altro.

Sintassi

EVT_WDF_DEVICE_PNP_STATE_CHANGE_NOTIFICATION EvtWdfDevicePnpStateChangeNotification;

void EvtWdfDevicePnpStateChangeNotification(
  [in] WDFDEVICE Device,
  [in] PCWDF_DEVICE_PNP_NOTIFICATION_DATA NotificationData
)
{...}

Parametri

[in] Device

Handle per un oggetto dispositivo framework.

[in] NotificationData

Puntatore a una struttura di WDF_DEVICE_PNP_NOTIFICATION_DATA fornita dal framework che identifica gli stati precedenti e nuovi della macchina dello stato.

Valore restituito

nessuno

Osservazioni

Per registrare una funzione di callback EvtDevicePnpStateChange , un driver deve chiamare WdfDeviceInitRegisterPnpStateChangeCallback.

Per altre informazioni sulla macchina a stato PnP del framework, vedere Computer di stato in Framework.

Requisiti

Requisito Valore
Piattaforma di destinazione Universale
Versione KMDF minima 1.0
Intestazione wdfdevice.h (includere Wdf.h)
IRQL PASSIVE_LEVEL

Vedi anche

EvtDevicePowerPolicyStateChange

EvtDevicePowerStateChange