EVT_WDF_DMA_ENABLER_SELFMANAGED_IO_STOP - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfdmaenabler.h

EVT_WDF_DMA_ENABLER_SELFMANAGED_IO_STOP EvtWdfDmaEnablerSelfmanagedIoStop;

NTSTATUS EvtWdfDmaEnablerSelfmanagedIoStop(
  [in] WDFDMAENABLER DmaEnabler
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdfdmaenabler-evt_wdf_dma_enabler_selfmanaged_io_stop)

EVT_WDF_DMA_ENABLER_SELFMANAGED_IO_STOP callback function

Description

[Applies to KMDF only]

A driver's EvtDmaEnablerSelfManagedIoStop event callback function stops a DMA device's self-managed I/O operations.

Parameters

DmaEnabler [in]

A handle to a DMA enabler object.

Return value

EvtDmaEnablerSelfManagedIoStop must return STATUS_SUCCESS or another status value for which NT_SUCCESS(status) equals TRUE, if it encounters no errors. Otherwise, this callback function must return a status value for which NT_SUCCESS(status) equals FALSE.

Remarks

To register an EvtDmaEnablerSelfManagedIoStop callback function, a function driver for a DMA device places the callback function's address in a WDF_DMA_ENABLER_CONFIG structure before the driver calls WdfDmaEnablerCreate.

For more information about the EvtDmaEnablerSelfManagedIoStop callback function, see Supporting Power Management for DMA Devices.

See also

EvtDmaEnablerSelfManagedIoStart

WDF_DMA_ENABLER_CONFIG

WdfDmaEnablerCreate