NdisFreeIoWorkItem function (ndis.h)

NDIS drivers call the NdisFreeIoWorkItem function to free a specified work item.

Syntax

void NdisFreeIoWorkItem(
  [in] NDIS_HANDLE NdisIoWorkItemHandle
);

Parameters

[in] NdisIoWorkItemHandle

A handle to a private NDIS_IO_WORKITEM structure that was returned by a previous call to the NdisAllocateIoWorkItem function.

Return value

None

Remarks

NdisFreeIoWorkItem calls IoFreeWorkItem to free the structure that is specified by the NdisIoWorkItemHandle parameter.

Requirements

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

See also

IoFreeWorkItem

NDIS I/O Work Items

NdisAllocateIoWorkItem

NdisQueueIoWorkItem