NDIS_WDI_TX_TRANSFER_COMPLETE_IND callback function (dot11wdi.h)

Important

This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.

The NdisWdiTxTransferCompleteIndication callback function specifies a list of frame buffers that have been transferred to the target. Frames with different TX Status values are completed in separate indications.

If the TX status is a failure code, an NdisWdiTxSendCompleteIndication is not indicated for any of the frames in the NET_BUFFER_LIST (NBL) chain.

This is a callback inside NDIS_WDI_DATA_API.

Syntax

NDIS_WDI_TX_TRANSFER_COMPLETE_IND NdisWdiTxTransferCompleteInd;

void NdisWdiTxTransferCompleteInd(
  [in] NDIS_HANDLE NdisMiniportDataPathHandle,
  [in] WDI_TX_FRAME_STATUS WifiTxFrameStatus,
  [in] PNET_BUFFER_LIST pNBL
)
{...}

Parameters

[in] NdisMiniportDataPathHandle

The NdisMiniportDataPathHandle passed to the IHV miniport in MiniportWdiTalTxRxInitialize.

[in] WifiTxFrameStatus

The TX status, specified as a WDI_TX_FRAME_STATUS value.

[in] pNBL

The null-terminated list of frame buffers that have been transferred to the target.

Return value

None

Requirements

Requirement Value
Minimum supported client Windows 10
Minimum supported server Windows Server 2016
Target Platform Windows
Header dot11wdi.h

See also

NDIS_WDI_DATA_API

NET_BUFFER_LIST

NdisWdiTxSendCompleteIndication

WDI_TX_FRAME_STATUS