WDF_REQUEST_REUSE_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfrequest.h

typedef enum _WDF_REQUEST_REUSE_FLAGS {
  WDF_REQUEST_REUSE_NO_FLAGS = 0x00000000,
  WDF_REQUEST_REUSE_SET_NEW_IRP = 0x00000001
} WDF_REQUEST_REUSE_FLAGS;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_WDF_REQUEST_REUSE_FLAGS enumeration

Description

[Applies to KMDF and UMDF]

The WDF_REQUEST_REUSE_FLAGS enumeration type defines flags that are used in a driver's WDF_REQUEST_REUSE_PARAMS structure.

Constants

WDF_REQUEST_REUSE_NO_FLAGS:0x00000000

No flags are set.

WDF_REQUEST_REUSE_SET_NEW_IRP:0x00000001

The NewIrp member of the WDF_REQUEST_REUSE_PARAMS structure is valid.

See also

WDF_REQUEST_REUSE_PARAMS