// 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 referenceNo description available.
The AcxJackCreate function creates and initializes a new audio jack object.
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.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.