// acxpin.h
NTSTATUS AcxPinAddJacks(
[in] ACXPIN Pin,
[in, reads(jackCount)] ACXJACK *Jacks,
[in] ULONG jackCount
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxPinAddJacks function adds an array of jacks to the specified pin.
Pin [in]The pin to which the jacks are added.
Jacks [in, reads(jackCount)]A pointer to an array of ACXJACK objects to add to the specified Pin.
jackCount [in]The number of ACXJACK objects in the Jacks array.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.