NdisMQueryInformationComplete (Windows Embedded CE 6.0)
1/6/2010
This function indicates that a prior call to the MiniportQueryInformation function, which returned NDIS_STATUS_PENDING, has completed.
Syntax
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 Value
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
Header | ndis.h |
Library | ndis.dll |
Windows Embedded CE | Windows CE .NET 4.0 and later |
See Also
Reference
NDIS Library Functions
MiniportInitialize
MiniportQueryInformation
NdisRequest
ProtocolRequestComplete