NdisFCancelOidRequest - NtDoc

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

VOID NdisFCancelOidRequest(
  [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-ndisfcanceloidrequest)

NdisFCancelOidRequest function

Description

Filter drivers call the NdisFCancelOidRequest function to cancel a previous 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 NdisFCancelOidRequest to cancel a previously issued request. The request can be originated by the filter driver or by overlying drivers. The pointer passed at OidRequest must be the same pointer that was passed in the call to the NdisFOidRequest function.

The filter driver can call NdisFCancelOidRequest from the FilterCancelOidRequest function to pass on the cancellation to underlying drivers.

See also

FilterAttach

FilterCancelOidRequest

NDIS_OID_REQUEST

NdisFOidRequest