WDF_REQUEST_FORWARD_OPTIONS_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdfrequest-_wdf_request_forward_options_flags)

_WDF_REQUEST_FORWARD_OPTIONS_FLAGS enumeration

Description

[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.

Constants

WDF_REQUEST_FORWARD_OPTION_SEND_AND_FORGET: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.

See also

WDF_REQUEST_FORWARD_OPTIONS