EVT_WDF_DRIVER_UNLOAD funzione di callback (wdfdriver.h)
[Si applica a KMDF e UMDF]
La funzione di callback dell'evento EvtDriverUnload di un driver esegue operazioni che devono essere eseguite prima che il driver venga scaricato.
Sintassi
EVT_WDF_DRIVER_UNLOAD EvtWdfDriverUnload;
void EvtWdfDriverUnload(
[in] WDFDRIVER Driver
)
{...}
Parametri
[in] Driver
Handle per un oggetto driver del framework.
Valore restituito
nessuno
Osservazioni
Un driver registra una funzione di callback EvtDriverUnload quando chiama WdfDriverCreate.
La funzione di callback EvtDriverUnload deve deallocare tutte le risorse di sistema non specifiche del dispositivo allocate dalla routine DriverEntry del driver.
Il framework non chiama la funzione di callback EvtDriverUnload di un driver se la routine DriverEntry del driver restituisce un valore di stato di errore.
Requisiti
Requisito | Valore |
---|---|
Piattaforma di destinazione | Universale |
Versione KMDF minima | 1.0 |
Versione UMDF minima | 2,0 |
Intestazione | wdfdriver.h (include Wdf.h) |
IRQL | PASSIVE_LEVEL |