// 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
No description available.
[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.
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.