NdisFCancelDirectOidRequest - NtDoc

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

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

NtDoc

No description available.

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

NdisFCancelDirectOidRequest function

Description

Filter drivers call the NdisFCancelDirectOidRequest function to cancel a previous direct OID request to the underlying drivers.

Parameters

NdisFilterHandle [in]

The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.

RequestId [in]

A cancellation identifier for the request. This identifier specifies the NDIS_OID_REQUEST structures that are being canceled.

Remarks

Filter drivers call NdisFCancelDirectOidRequest to cancel a previously issued direct OID request. The request can be originated by the filter driver or by overlying drivers. The pointer that is passed at the OidRequest parameter must be the same pointer that was passed in the call to the NdisFDirectOidRequest function.

The filter driver can call NdisFCancelDirectOidRequest from the FilterCancelDirectOidRequest function to pass on the cancellation to underlying drivers.

See also

FilterAttach

FilterCancelDirectOidRequest

NDIS_OID_REQUEST

NdisFDirectOidRequest