// ndis.h
VOID NdisCancelOidRequest(
[in] NDIS_HANDLE NdisBindingHandle,
[in] PVOID RequestId
);
View the official Windows Driver Kit DDI referenceNo description available.
Protocol drivers call the NdisCancelOidRequest function to cancel a previous request to the underlying drivers.
NdisBindingHandle [in]The handle returned by the NdisOpenAdapterEx function that identifies the target 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 this function to cancel a previously issued 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 NdisOidRequest function.