AcxJackCreate - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxpin.h

NTSTATUS AcxJackCreate(
  [in]  ACXPIN                 AcxPin,
  [in]  PWDF_OBJECT_ATTRIBUTES Attributes,
  [in]  PACX_JACK_CONFIG       Config,
  [out] ACXJACK                *Jack
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxpin-acxjackcreate)

Description

The AcxJackCreate function creates and initializes a new audio jack object.

Parameters

AcxPin [in]

The pin object associated with the jack.

Attributes [in]

A pointer to the WDF_OBJECT_ATTRIBUTES structure to use when creating the jack.

Config [in]

A pointer to an ACX_JACK_CONFIG structure to use when creating the jack.

Jack [out]

A pointer to the newly created jack object.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

ACX requirements

Minimum ACX version: 1.0

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

See also