// ndis.h
VOID NdisMDirectOidRequestComplete(
[in] NDIS_HANDLE MiniportAdapterHandle,
[in] PNDIS_OID_REQUEST OidRequest,
[in] NDIS_STATUS Status
);
View the official Windows Driver Kit DDI referenceNo description available.
Miniport drivers call the NdisMDirectOidRequestComplete function to return the final status of a direct OID request for which the driver's MiniportDirectOidRequest function returned NDIS_STATUS_PENDING.
MiniportAdapterHandle [in]A miniport adapter handle that NDIS passed to the MiniportAdapterHandle parameter of the MiniportInitializeEx function.
OidRequest [in]A pointer to a buffer that is formatted as an NDIS_OID_REQUEST structure. The miniport driver obtained this pointer as an input parameter to its MiniportDirectOidRequest function.
Status [in]The final status of the request operation: NDIS_STATUS_SUCCESS, NDIS_STATUS_REQUEST_ABORTED, or any driver-determined NDIS_STATUS_Xxxexcept NDIS_STATUS_PENDING. For more information about OID status values, see MiniportDirectOidRequest.
A miniport driver that returns NDIS_STATUS_PENDING from its MiniportDirectOidRequest function must call NdisMDirectOidRequestComplete after the miniport driver has finished the request operation.
If an overlying driver originated the direct OID request, NDIS calls the request complete function (see ProtocolDirectOidRequestComplete and FilterDirectOidRequestComplete) of the overlying that originated the request.
FilterDirectOidRequestComplete
ProtocolDirectOidRequestComplete