// wdfio.h
typedef struct _WDF_IO_FORWARD_PROGRESS_RESERVED_POLICY_SETTINGS {
union {
struct {
PFN_WDF_IO_WDM_IRP_FOR_FORWARD_PROGRESS EvtIoWdmIrpForForwardProgress;
} ExaminePolicy;
} Policy;
} WDF_IO_FORWARD_PROGRESS_RESERVED_POLICY_SETTINGS;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF only]
The WDF_IO_FORWARD_PROGRESS_RESERVED_POLICY_SETTINGS structure contains information about specific actions that the framework can take when it receives an I/O request for your driver, if a low-memory situation exists.
PolicyPolicy.ExaminePolicyPolicy.ExaminePolicy.EvtIoWdmIrpForForwardProgressA pointer to the driver's queue-specific EvtIoWdmIrpForForwardProgress callback function.
The WDF_IO_FORWARD_PROGRESS_RESERVED_POLICY_SETTINGS structure is used as a member type in the WDF_IO_QUEUE_FORWARD_PROGRESS_POLICY structure.