ACX_JACK_CONFIG structure (acxpin.h)

The ACX_JACK_CONFIG structure is used to configure an audio jack.

Syntax

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;

Members

Size

The size of all of the data in the ACX_JACK_CONFIG structure in bytes.

Id

An identifier associated with the jack. Currently not used, set to AcxJackPropertiesIdDefault.

Flags

A combination of values from the ACX_JACK_CONFIG_FLAGS enum that describe the jack.

Callbacks

A pointer to an ACX_JACK_CALLBACKS structure that specifies the callback functions for the jack.

Description

An ACX_JACK_DESCRIPTION structure that describes the jack, including the connection type, location of the jack, and so on.

Remarks

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

Requirements

Requirement Value
Header acxpin.h

See also