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 di 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 un CompletionRoutine funzione di callback o chiama WdfRequestComplete per la richiesta.

Osservazioni

Attualmente, i driver devono impostare il flag di WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET.

Fabbisogno

Requisito Valore
versione minima di KMDF 1.9
intestazione wdfrequest.h (include Wdf.h)

Vedere anche

WDF_REQUEST_FORWARD_OPTIONS