NdisMQueryInformationComplete (Windows CE 5.0)

Send Feedback

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

VOID NdisMQueryInformationComplete(NDIS_HANDLE MiniportAdapterHandle,NDIS_STATUS Status);

Parameters

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

Return Values

None.

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.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
Link Library: Ndis.dll.

See Also

MiniportInitialize | MiniportQueryInformation | NdisRequest | ProtocolRequestComplete

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.