// wdfdmatransaction.h
VOID WdfDmaTransactionSetChannelConfigurationCallback(
[in] WDFDMATRANSACTION DmaTransaction,
[in, optional] PFN_WDF_DMA_TRANSACTION_CONFIGURE_DMA_CHANNEL ConfigureRoutine,
[in, optional] PVOID ConfigureContext
);
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF only]
The WdfDmaTransactionSetChannelConfigurationCallback method registers a channel configuration event callback function for a system-mode DMA transaction.
DmaTransaction [in]A handle to an initialized DMA transaction object for which to set or clear the channel configuration callback.
ConfigureRoutine [in, optional]A pointer to the driver's EvtDmaTransactionConfigureDmaChannel event callback function, or NULL to clear it.
ConfigureContext [in, optional]A pointer to a buffer containing the context to be provided to the driver's EvtDmaTransactionConfigureDmaChannel event callback function, or NULL.
This method allows the driver to customize the adapter configuration before programming the system DMA controller.
Typically from within an I/O queue event callback function, a driver performs the following steps, in this order:
If the driver has specified an EvtDmaTransactionConfigureDmaChannel event callback function by calling WdfDmaTransactionSetChannelConfigurationCallback and the driver subsequently calls WdfDmaTransactionRelease, the callback is cleared.
WdfDmaTransactionSetChannelConfigurationCallback must be used with a DMA enabler that specifies a system-mode DMA profile.
If your driver calls this method on an operating system earlier than Windows 8, the framework's verifier reports an error.
EvtDmaTransactionConfigureDmaChannel