// acxtargets.h
ACXTARGETPIN AcxTargetCircuitGetTargetPin(
ACXTARGETCIRCUIT TargetCircuit,
ULONG PinIndex
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetCircuitGetTargetPin function, given a valid pin index value, will return the associated ACXTARGETPIN object.
TargetCircuitAn ACXTARGETCIRCUIT handle. For more information about ACX objects, see Summary of ACX Objects.
PinIndexA valid pin index value.
Returns a ACXTARGETELEMENT ACX Object that is associated with the specified circuit.
PDSP_CIRCUIT_CONTEXT circuitCtx;
ACX_REQUEST_PARAMETERS params;
circuitCtx = GetDspCircuitContext(Circuit);
for (ULONG pinIndex = 0; pinIndex < AcxTargetCircuitGetPinsCount(TargetCircuit); ++pinIndex)
{
ACXTARGETPIN targetPin = AcxTargetCircuitGetTargetPin(TargetCircuit, pinIndex);
ULONG targetPinFlow = 0;
ACX_REQUEST_PARAMETERS_INIT_PROPERTY(¶ms,
KSPROPSETID_Pin,
KSPROPERTY_PIN_DATAFLOW,
AcxPropertyVerbGet,
AcxItemTypePin,
AcxTargetPinGetId(targetPin),
nullptr, 0,
&targetPinFlow,
sizeof(targetPinFlow));
...
}
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.