NdisMQueryInformationComplete

This function indicates that a prior call to the MiniportQueryInformation function, which returned NDIS_STATUS_PENDING, has completed.

At a Glance

Header file: Ndis.h
Windows CE versions: 2.0 and later

Syntax

VOID NdisMQueryInformationComplete(
IN NDIS_HANDLE
MiniportAdapterHandle, IN NDIS_STATUS Status );

Parameters

MiniportAdapterHandle
Handle originally input to the MiniportInitialize function.
Status
Specifies the return value for the completed request originally passed to the MiniportQueryInformation function.

Remarks

A call to this function causes NDIS to return the completed query request to the ProtocolRequestComplete function of the driver that originally called the NdisRequest function.

Before it calls this function, a miniport supplies the OID-specific information originally requested from its MiniportQueryInformation function. That is, the driver sets the appropriate values at BytesWritten and/or BytesNeeded and provides as much of the requested data as possible in the buffer at InformationBuffer.

A driver that calls this function runs at IRQL DISPATCH_LEVEL.

See Also

NdisRequest