// acxtargets.h
NTSTATUS AcxTargetStreamFormatRequestForProperty(
ACXTARGETSTREAM TargetStream,
WDFREQUEST Request,
PACX_REQUEST_PARAMETERS Params
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetStreamFormatRequestForProperty formats a WDFREQUEST as an ACX property request to be used on specified stream target.
TargetStreamAn existing ACXTARGETSTREAM object. For more information about ACX objects, see Summary of ACX Objects.
RequestA WDFREQUEST handle described in Summary of Framework Objects. For general information about WDF requests, see Creating Framework Request Objects.
ParamsAn initialized ACX_REQUEST_PARAMETERS structure that is used to store property request parameter information.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
A WDFREQUEST is a driver created I/O requests. Framework-based drivers process each I/O request by calling framework request object methods. For more information, see Framework Request Objects.
NTSTATUS
Aggregator_FormatRequestForProperty(
_In_ ACXTARGETSTREAM Stream,
_In_ WDFREQUEST Request,
_In_ PACX_REQUEST_PARAMETERS Parameters
)
{
PAGED_CODE();
return AcxTargetStreamFormatRequestForProperty(Stream, Request, Parameters);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.