// ndis.h
VOID NdisCancelDirectOidRequest(
[in] NDIS_HANDLE NdisBindingHandle,
[in] PVOID RequestId
);
View the official Windows Driver Kit DDI referenceNo description available.
Protocol drivers call the NdisCancelDirectOidRequest function to cancel a previous direct OID request to the underlying drivers.
NdisBindingHandle [in]The handle that the NdisOpenAdapterEx function returned that identifies the target miniport adapter on the binding.
RequestId [in]A cancellation identifier for the request. This identifier specifies the NDIS_OID_REQUEST structures that are being canceled.
Protocol drivers call the NdisCancelDirectOidRequest function to cancel a previously issued direct OID request. The request ID that is passed at the RequestId parameter must match the request ID in the NDIS_OID_REQUEST structure that was passed in the call to the NdisDirectOidRequest function.