NdisReleaseAdapterResources

VOID
    NdisReleaseAdapterResources(
        IN NDIS_HANDLE NdisAdapterHandle
        );

NdisReleaseAdapterResources is called by the NIC driver, typically from its MacRemoveAdapter function.

Parameters

NdisAdapterHandle
Identifies the handle that the NDIS interface library associates with the network interface card.

Comments

Calling NdisReleaseAdapterResources indicates that the resources claimed in the registry for the network interface card (I/O ports, memory mappings, interrupts, and DMA channels) are released. The NDIS library can reuse these resources for another network interface card.

Callers of NdisReleaseAdapterResources run at IRQL PASSIVE_LEVEL.

See Also

MacRemoveAdapter