// acxtargets.h
NTSTATUS AcxTargetPinFlushModeDataFormatListCache(
[in] ACXTARGETPIN TargetPin,
[in, optional] const GUID *SignalProcessingMode
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxTargetPinFlushModeDataFormatListCache function flushes the mode data format list cache for the specified target pin.
TargetPin [in]The target pin for which to flush the mode data format list cache.
SignalProcessingMode [in, optional]The optional signal processing mode of the TargetPin.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
Example usage is shown below.
...
_In_ ACXTARGETCIRCUIT TargetCircuit,
_In_ ULONG TargetPinId
)
...
//
// Flush the target data-format cache.
//
AcxTargetPinFlushModeDataFormatListCache(
AcxTargetCircuitGetTargetPin(TargetCircuit, TargetPinId),
NULL);
Minimum ACX version: 1.1
For more information about ACX versions, see ACX version overview.