// wdfio.h
typedef enum _WDF_IO_FORWARD_PROGRESS_ACTION {
WdfIoForwardProgressActionInvalid = 0x0,
WdfIoForwardProgressActionFailRequest,
WdfIoForwardProgressActionUseReservedRequest
} WDF_IO_FORWARD_PROGRESS_ACTION;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF only]
The WDF_IO_FORWARD_PROGRESS_ACTION enumeration identifies actions that the framework can take for an I/O request packet (IRP) that your driver examines during a low-memory situation.
WdfIoForwardProgressActionInvalid:0x0For internal use only.
WdfIoForwardProgressActionFailRequestThe framework will complete the current I/O request with an error status value.
WdfIoForwardProgressActionUseReservedRequestThe framework will use a reserved request object, if one is available, for the current I/O request.
The WDF_IO_FORWARD_PROGRESS_ACTION enumeration is used as the return value for the EvtIoWdmIrpForForwardProgress callback function.