NdisCancelOidRequest - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisCancelOidRequest(
  [in] NDIS_HANDLE NdisBindingHandle,
  [in] PVOID       RequestId
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndiscanceloidrequest)

NdisCancelOidRequest function

Description

Protocol drivers call the NdisCancelOidRequest function to cancel a previous request to the underlying drivers.

Parameters

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.

Remarks

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.

See also

NDIS_OID_REQUEST

NdisOidRequest

NdisOpenAdapterEx