Condividi tramite


enumerazione WDF_REQUEST_FORWARD_OPTIONS_FLAGS (wdfrequest.h)

[Si applica solo a KMDF]

Il tipo di enumerazione WDF_REQUEST_FORWARD_OPTIONS_FLAGS definisce i flag utilizzati nella struttura WDF_REQUEST_FORWARD_OPTIONS di un driver.

Sintassi

typedef enum _WDF_REQUEST_FORWARD_OPTIONS_FLAGS {
  WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET = 0x00000001
} WDF_REQUEST_FORWARD_OPTIONS_FLAGS;

Costanti

 
WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET
Valore: 0x00000001
Se impostato, il driver non deve ricevere una notifica quando la richiesta viene completata o annullata. Il driver non imposta una funzione di callback CompletionRoutine o chiama WdfRequestComplete per la richiesta.

Commenti

Attualmente, i driver devono impostare il flag di WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET.

Requisiti

Requisito Valore
Versione KMDF minima 1,9
Intestazione wdfrequest.h (include Wdf.h)

Vedi anche

WDF_REQUEST_FORWARD_OPTIONS