NET_ADAPTER_DMA_CAPABILITIES_INIT - NtDoc

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

void NET_ADAPTER_DMA_CAPABILITIES_INIT(
  [_Out_] NET_ADAPTER_DMA_CAPABILITIES *DmaCapabilities,
  [_In_]  WDFDMAENABLER                DmaEnabler
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netadapter-net_adapter_dma_capabilities_init)

NET_ADAPTER_DMA_CAPABILITIES_INIT function

Description

The NET_ADAPTER_DMA_CAPABILITIES_INIT function initializes a NET_ADAPTER_DMA_CAPABILITIES structure.

Parameters

DmaCapabilities [_Out_]

A pointer to the driver-allocated NET_ADAPTER_DMA_CAPABILITIES structure to be initialized.

DmaEnabler [_In_]

A DMA enabler object the client driver obtained in a previous call to WdfDmaEnablerCreate.

Remarks

The client driver typically calls this function while setting capabilities for its data path, when it is starting a net adapter but before it calls NetAdapterStart.

See also