// acxpin.h
typedef struct _ACX_JACK_CONFIG {
ULONG Size;
ULONG Id;
ULONG Flags;
PACX_JACK_CALLBACKS Callbacks;
ACX_JACK_DESCRIPTION Description;
} ACX_JACK_CONFIG, *PACX_JACK_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_JACK_CONFIG structure is used to configure an audio jack.
SizeThe size of all of the data in the ACX_JACK_CONFIG structure in bytes.
IdAn identifier associated with the jack. Currently not used, set to AcxJackPropertiesIdDefault.
FlagsA combination of values from the ACX_JACK_CONFIG_FLAGS enum that describe the jack.
CallbacksA pointer to an ACX_JACK_CALLBACKS structure that specifies the callback functions for the jack.
DescriptionAn ACX_JACK_DESCRIPTION structure that describes the jack, including the connection type, location of the jack, and so on.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.