// ndis.h
VOID NdisFCancelDirectOidRequest(
[in] NDIS_HANDLE NdisFilterHandle,
[in] PVOID RequestId
);
View the official Windows Driver Kit DDI referenceNo description available.
Filter drivers call the NdisFCancelDirectOidRequest function to cancel a previous direct OID request to the underlying drivers.
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.
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.