// wdfrequest.h
VOID WDF_REQUEST_REUSE_PARAMS_INIT(
[out] PWDF_REQUEST_REUSE_PARAMS Params,
[in] ULONG Flags,
[in] NTSTATUS Status
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_REQUEST_REUSE_PARAMS_INIT function initializes a driver's WDF_REQUEST_REUSE_PARAMS structure.
Params
[out]A pointer to a caller-supplied WDF_REQUEST_REUSE_PARAMS structure.
Flags
[in]WDF_REQUEST_REUSE_FLAGS-typed flags.
Status
[in]An NTSTATUS value that the framework assigns to the request.
Before a driver calls the WdfRequestReuse method, it must call WDF_REQUEST_REUSE_PARAMS_INIT to initialize a WDF_REQUEST_REUSE_PARAMS structure.
The WDF_REQUEST_REUSE_PARAMS_INIT function zeros the specified WDF_REQUEST_REUSE_PARAMS structure and sets the structures Size member. It also sets the structure's Flags and Status members to the specified values.
For a code example that uses WDF_REQUEST_REUSE_PARAMS_INIT, see WdfRequestReuse.
WDF_REQUEST_REUSE_PARAMS_SET_NEW_IRP