WDF_REQUEST_FORWARD_OPTIONS_FLAGS enumeration (wdfrequest.h)

[Applies to KMDF only]

The WDF_REQUEST_FORWARD_OPTIONS_FLAGS enumeration type defines flags that are used in a driver's WDF_REQUEST_FORWARD_OPTIONS structure.

Syntax

typedef enum _WDF_REQUEST_FORWARD_OPTIONS_FLAGS {
  WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET = 0x00000001
} WDF_REQUEST_FORWARD_OPTIONS_FLAGS;

Constants

 
WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET
Value: 0x00000001
If set, the driver does not need to be notified when the request is completed or canceled. The driver does not set a CompletionRoutine callback function or call WdfRequestComplete for the request.

Remarks

Currently, drivers must set the WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET flag.

Requirements

Requirement Value
Minimum KMDF version 1.9
Header wdfrequest.h (include Wdf.h)

See also

WDF_REQUEST_FORWARD_OPTIONS