Skip to content

Latest commit

 

History

History
104 lines (75 loc) · 3.15 KB

nc-dot11wdi-ndis_wdi_tx_query_suspect_frame_complete_status.md

File metadata and controls

104 lines (75 loc) · 3.15 KB
UID title description tech.root ms.date keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.lib req.dll req.irql req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library targetos f1_keywords topic_type api_type api_location api_name
NC:dot11wdi.NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS
NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS (dot11wdi.h)
The TxQuerySuspectFrameStatus callback function is implemented by the IHV miniport to query the status of a suspect frame.
netvista
04/02/2018
NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS callback function
dot11wdi.h
Windows
NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS
dot11wdi/NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS
apiref
UserDefined
dot11wdi.h
NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS

NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS callback function

-description

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 TxQuerySuspectFrameStatus callback function is implemented by the IHV miniport to query the status of a suspect frame.

-parameters

-param NdisMiniportDataPathHandle

The NdisMiniportDataPathHandle passed to the IHV miniport in MiniportWdiTalTxRxInitialize.

-param SuspectFrameContext

Context information about the suspect frame.

-param pNBL

A pointer to the suspect frame.

-param pIsTransferCompleteNeeded

A pointer to a BOOLEAN value that indicates if the frame requires the transfer completion callback to be invoked.

-param pIsSendCompleteNeeded

A pointer to a BOOLEAN value that indicates if the frame requires the send completion callback to be invoked.

-param pWifiStatus

A pointer to the status set by the IHV miniport to indicate the result of TxQuerySuspectFrameStatus.

-prototype

//Declaration

NDIS_WDI_TX_QUERY_SUSPECT_FRAME_COMPLETE_STATUS NdisWdiTxQuerySuspectFrameCompleteStatus; 

// Definition

void NdisWdiTxQuerySuspectFrameCompleteStatus 
(
	NDIS_HANDLE NdisMiniportDataPathHandle
	UINT64 SuspectFrameContext
	PNET_BUFFER_LIST pNBL
	BOOLEAN *pIsTransferCompleteNeeded
	BOOLEAN *pIsSendCompleteNeeded
	NDIS_STATUS *pWifiStatus
)
{...}

-remarks

Register your implementation of this callback function by setting the appropriate member of the NDIS_WDI_DATA_API structure.

This callback is typically called from the context of the TxSuspectFrameListAbort callback function.

-see-also