NdisFreeCloneOidRequest function (ndis.h)

The NdisFreeCloneOidRequest function frees a cloned NDIS_OID_REQUEST structure.

Syntax

void NdisFreeCloneOidRequest(
  [in] IN NDIS_HANDLE       SourceHandle,
  [in] IN PNDIS_OID_REQUEST Request
);

Parameters

[in] SourceHandle

An NDIS handle that identifies a filter module or an intermediate driver's protocol binding.

[in] Request

A pointer to the NDIS_OID_REQUEST structure that is to be freed.

Return value

None

Remarks

An NDIS intermediate driver or filter driver calls NdisFreeCloneOidRequest to free an NDIS_OID_REQUEST structure that was allocated by calling the NdisAllocateCloneOidRequest function.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Target Platform Desktop
Header ndis.h (include Ndis.h)
Library Ndis.lib
IRQL <= DISPATCH_LEVEL
DDI compliance rules Irql_OID_Function(ndis)

See also

NDIS_OID_REQUEST

NdisAllocateCloneOidRequest