WDF_REQUEST_REUSE_PARAMS_INIT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfrequest-wdf_request_reuse_params_init)

WDF_REQUEST_REUSE_PARAMS_INIT function

Description

[Applies to KMDF and UMDF]

The WDF_REQUEST_REUSE_PARAMS_INIT function initializes a driver's WDF_REQUEST_REUSE_PARAMS structure.

Parameters

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.

Remarks

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.

See also

WDF_REQUEST_REUSE_PARAMS

WDF_REQUEST_REUSE_PARAMS_SET_NEW_IRP

WdfRequestReuse