// wdfrequest.h
typedef enum _WDF_REQUEST_FORWARD_OPTIONS_FLAGS {
WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET = 0x00000001
} WDF_REQUEST_FORWARD_OPTIONS_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
[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.
WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET:0x00000001If 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.
Currently, drivers must set the WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET flag.