Funzione StorPortSetEvent (storport.h)
Un miniport può chiamare StorPortSetEvent per impostare un oggetto evento sullo stato segnalato.
Sintassi
ULONG StorPortSetEvent(
PVOID HwDeviceExtension,
PSTOR_EVENT Event
);
Parametri
HwDeviceExtension
Puntatore all'estensione del dispositivo del miniport.
Event
Puntatore a una struttura STOR_EVENT contenente l'oggetto evento.
Valore restituito
StorPortSetEvent restituisce un codice di stato, ad esempio uno dei seguenti:
Codice restituito | Descrizione |
---|---|
STOR_STATUS_INVALID_IRQL | Il runtime di integrazione corrente è maggiore di DISPATCH_LEVEL. |
STOR_STATUS_INVALID_PARAMETER | HwDeviceExtension o Event sono parametri non validi. |
STOR_STATUS_SUCCESS | L'oggetto evento è stato impostato correttamente sullo stato segnalato. |
STOR_STATUS_UNSUCCESSFUL | Operazione non riuscita. |
Commenti
Per altri dettagli, vedere KeSetEvent .
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows 10, versione 2004 |
Intestazione | storport.h |
Vedi anche
KeSetEvent per altri dettagli.