VOID
NdisReleaseAdapterResources(
IN NDIS_HANDLE NdisAdapterHandle
);
NdisReleaseAdapterResources is called by the NIC driver, typically from its MacRemoveAdapter function.
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.