// acxpin.h
EVT_ACX_PIN_RETRIEVE_JACK_SINK_INFO EvtAcxPinRetrieveJackSinkInfo;
NTSTATUS EvtAcxPinRetrieveJackSinkInfo(
ACXPIN Pin,
PACX_JACK_SINK_INFORMATION SinkInfo
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EVT_ACX_PIN_RETRIEVE_JACK_SINK_INFO callback function is implemented by the driver and is called when sink information is requested for the specified pin.
PinAn ACXPIN object representing the specific pin for which sink information is requested.
SinkInfoA pointer to an ACX_JACK_SINK_INFORMATION structure to be populated with the requested sink information.
EVT_ACX_PIN_RETRIEVE_JACK_SINK_INFO returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.