Partager via


EVT_WDF_DEVICE_PNP_STATE_CHANGE_NOTIFICATION fonction de rappel (wdfdevice.h)

[S’applique uniquement à KMDF]

Notes

Cette fonction de rappel est uniquement destinée à une utilisation interne à Microsoft.

La fonction de rappel d’événement EvtDevicePnpStateChange d’un pilote informe le pilote que l’ordinateur d’état Plug-and-Play (PnP) d’un appareil passe d’un état à un autre.

Syntaxe

EVT_WDF_DEVICE_PNP_STATE_CHANGE_NOTIFICATION EvtWdfDevicePnpStateChangeNotification;

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

Paramètres

[in] Device

Handle d’un objet d’appareil framework.

[in] NotificationData

Pointeur vers une structure de WDF_DEVICE_PNP_NOTIFICATION_DATA fournie par l’infrastructure qui identifie les états anciens et nouveaux de l’ordinateur d’état.

Valeur de retour

None

Remarques

Pour inscrire une fonction de rappel EvtDevicePnpStateChange , un pilote doit appeler WdfDeviceInitRegisterPnpStateChangeCallback.

Pour plus d’informations sur l’ordinateur d’état PnP de l’infrastructure, consultez Machines d’état dans l’infrastructure.

Configuration requise

Condition requise Valeur
Plateforme cible Universal
Version KMDF minimale 1.0
En-tête wdfdevice.h (include Wdf.h)
IRQL PASSIVE_LEVEL

Voir aussi

EvtDevicePowerPolicyStateChange

EvtDevicePowerStateChange