// wdm.h
PJOIN_DMA_DOMAIN PjoinDmaDomain;
NTSTATUS PjoinDmaDomain(
[in] PDMA_ADAPTER DmaAdapter,
[in] HANDLE DomainHandle
)
{...}
View the official Windows Driver Kit DDI reference
No description available.
The PJOIN_DMA_DOMAIN callback function joins the specified DMA domain.
DmaAdapter
[in]A pointer to a DMA_ADAPTER structure. This structure is the adapter object that represents the driver's bus-master DMA device or system DMA channel. The caller obtained this pointer from a previous call to the IoGetDmaAdapter routine.
DomainHandle
[in]The handle to the DMA domain that the caller previous obtained through PGET_DMA_DOMAIN.
Returns STATUS_SUCCESS if the call is successful. Otherwise, returns an appropriate NTSTATUS values error code. For more information, see NTSTATUS Values.