NdisCancelDirectOidRequest - NtDoc

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

VOID NdisCancelDirectOidRequest(
  [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-ndiscanceldirectoidrequest)

NdisCancelDirectOidRequest function

Description

Protocol drivers call the NdisCancelDirectOidRequest function to cancel a previous direct OID request to the underlying drivers.

Parameters

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.

Remarks

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.

See also

NDIS_OID_REQUEST

NdisDirectOidRequest

NdisOpenAdapterEx