共用方式為


NdisCancelOidRequest (Compact 2013)

3/26/2014

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

Syntax

VOID
  NdisCancelOidRequest(
    IN NDIS_HANDLE  NdisBindingHandle,
    IN PVOID  RequestId
    );

Parameters

  • NdisBindingHandle
    The handle returned by the NdisOpenAdapterEx function that identifies the target adapter on the binding.
  • RequestId
    A cancellation identifier for the request. This identifier specifies the NDIS_OID_REQUEST structures that are being canceled.

Return Value

None

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.

Requirements

Header

ndis.h

See Also

Reference

NDIS OID Request Interface for Protocol Drivers
NDIS_OID_REQUEST
NdisOidRequest
NdisOpenAdapterEx