// acxpin.h
EVT_ACX_JACK_RETRIEVE_PRESENCE_STATE EvtAcxJackRetrievePresenceState;
NTSTATUS EvtAcxJackRetrievePresenceState(
ACXJACK Jack,
PBOOLEAN IsConnected
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EVT_ACX_JACK_RETRIEVE_PRESENCE_STATE callback function is implemented by the driver and is called when the state is requested for the specified jack.
JackThe physical terminal for which the presence state has been requested.
IsConnectedA Boolean value indicating if the terminal specified by the Jack parameter is present and connected.
EVT_ACX_JACK_RETRIEVE_PRESENCE_STATE returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.