// acxpin.h
typedef struct _ACX_JACK_SINK_INFORMATION {
ACX_JACK_SINK_INFO_CONNECTION_TYPE ConnType;
USHORT ManufacturerId;
USHORT ProductId;
USHORT AudioLatency;
BOOLEAN HDCPCapable;
BOOLEAN AICapable;
UCHAR SinkDescriptionLength;
WCHAR SinkDescription[ACX_MAX_JACK_SINK_DESCRIPTION_NAME_LENGTH];
LUID PortId;
} ACX_JACK_SINK_INFORMATION, *PACX_JACK_SINK_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_JACK_SINK_INFORMATION structure specifies information about a display-related digital audio device, such as an HDMI device or a display port.
ConnTypeA value from the ACX_JACK_SINK_INFO_CONNECTION_TYPE enum indicating the video connection type, such as HDMI or DisplayPort.
ManufacturerIdSpecifies the sink manufacturer ID.
ProductIdSpecifies the sink product ID.
AudioLatencySpecifies the sink audio latency.
HDCPCapableSpecifies that this jack sink provides support for high-bandwidth digital content protection (HDCP).
AICapableSpecifies that this jack sink provides support for the following data packet types: audio content protection (ACP), international standard recording code-1 (ISRC1), and ISRC2.
SinkDescriptionLengthSpecifies the length of the SinkDescription field.
SinkDescriptionSpecifies a string that contains the sink name, which must be NULL-terminated. The maximum length is defined by the MAX_SINK_DESCRIPTION_NAME_LENGTH constant (31 characters, plus a terminating NULL).
PortIdReserved.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.