// dot11wdi.h
NDIS_WDI_TX_QUERY_RA_TID_STATE NdisWdiTxQueryRaTidState;
void NdisWdiTxQueryRaTidState(
[in] NDIS_HANDLE NdisMiniportDataPathHandle,
[in] WDI_PORT_ID PortId,
[in] WDI_PEER_ID PeerId,
[in] WDI_EXTENDED_TID ExTid,
[out] NDIS_STATUS *pWifiStatus,
[out] PUINT16 pQueueLength
)
{...}
View the official Windows Driver Kit DDI reference// dot11wificxintf.h
NDIS_WDI_TX_QUERY_RA_TID_STATE NdisWdiTxQueryRaTidState;
void NdisWdiTxQueryRaTidState(
NDIS_HANDLE NdisMiniportDataPathHandle,
WDI_PORT_ID PortId,
WDI_PEER_ID PeerId,
WDI_EXTENDED_TID ExTid,
NDIS_STATUS *pWifiStatus,
PUINT16 pQueueLength
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
[!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 NdisWdiTxQueryRATIDState callback function is used by the TxEngine to query the state of a RA/TID or Port queue.
This is a callback inside NDIS_WDI_DATA_API.
NdisMiniportDataPathHandle [in]The NdisMiniportDataPathHandle passed to the IHV miniport in MiniportWdiTalTxRxInitialize.
PortId [in]The port ID.
PeerId [in]The peer ID.
ExTid [in]The Extended Traffic ID (TID)
pWifiStatus [out]Indicates the result of the query operation. See the Remarks section for more information.
pQueueLength [out]The number of backlogged frames in the specified RA/TID or Port queue.
The TxMgr returns a success status if the port and peer are valid. Otherwise, it returns an error status. In the case of a success status, the QueueLength is set to the number of backlogged frames in the specified RA/TID or Port queue.
If TargetPriorityQueueing is true, WDI_PEER_ID must be set to the wildcard peer value.
[!IMPORTANT] This topic is part of the WiFiCx driver model. 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 previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.
[!WARNING] Some information in this topic relates to prereleased product, which may be substantially modified before it is commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This function is reserved for system use and should not be called in your code.
NdisMiniportDataPathHandleReserved.
PortIdReserved.
PeerIdReserved.
ExTidReserved.
pWifiStatusReserved.
pQueueLengthReserved.