WDF_DMA_ENABLER_CONFIG_INIT - NtDoc

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

VOID WDF_DMA_ENABLER_CONFIG_INIT(
  [out] PWDF_DMA_ENABLER_CONFIG Config,
  [in]  WDF_DMA_PROFILE         Profile,
  [in]  size_t                  MaximumLength
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfdmaenabler-wdf_dma_enabler_config_init)

WDF_DMA_ENABLER_CONFIG_INIT function

Description

[Applies to KMDF only]

The WDF_DMA_ENABLER_CONFIG_INIT function initializes a driver's WDF_DMA_ENABLER_CONFIG structure.

Parameters

Config [out]

A pointer to a driver-allocated WDF_DMA_ENABLER_CONFIG structure.

Profile [in]

A value for the Profile member of the WDF_DMA_ENABLER_CONFIG structure.

MaximumLength [in]

A value for the MaximumLength member of the WDF_DMA_ENABLER_CONFIG structure.

Remarks

Drivers must call the WDF_DMA_ENABLER_CONFIG_INIT function before calling WdfDmaEnablerCreate.

Examples

For a code example that uses WDF_DMA_ENABLER_CONFIG_INIT, see WdfDmaEnablerCreate.

See also

WDF_DMA_ENABLER_CONFIG

WdfDmaEnablerCreate