// acxpin.h
EVT_ACX_PIN_SET_DATAFORMAT EvtAcxPinSetDataformat;
NTSTATUS EvtAcxPinSetDataformat(
ACXPIN Pin,
ACXDATAFORMAT DataFormat
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The EVT_ACX_PIN_SET_DATAFORMAT callback function is implemented by the driver and is called to set the data format for the specified pin.
PinAn ACXPIN object representing the specific pin for which to set the data format.
DataFormatA handle to a data format object.
EVT_ACX_PIN_SET_DATAFORMAT 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.