// acxpin.h
EVT_ACX_PIN_DATAFORMAT_CHANGE_NOTIFICATION EvtAcxPinDataformatChangeNotification;
VOID EvtAcxPinDataformatChangeNotification(
ACXPIN Pin,
ACXTARGETCIRCUIT TargetCircuit,
ULONG TargetPinId
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EVT_ACX_PIN_DATAFORMAT_CHANGE_NOTIFICATION callback function is implemented by the driver and is called when a data format change occurs on the specified pin.
PinAn ACXPIN object representing the specific pin for which the data format change occurred.
TargetCircuitAn ACXTARGETCIRCUIT object representing the circuit to which the Pin is connected.
TargetPinIdThe identifier of the pin in the TargetCircuit to which the Pin is connected.
The change is triggered by a change in the corresponding (connected) remote pin or circuit.
Minimum ACX version: 1.1
For more information about ACX versions, see ACX version overview.