NdisDeregisterDeviceEx function (ndis.h)

The NdisDeregisterDeviceEx function removes, from the system, a device object that was created by the NdisRegisterDeviceEx function.

Syntax

void NdisDeregisterDeviceEx(
  [in] NDIS_HANDLE NdisDeviceHandle
);

Parameters

[in] NdisDeviceHandle

The handle returned by NdisRegisterDeviceEx that identifies the device object to be deregistered.

Return value

None

Remarks

The NdisDeregisterDeviceEx function removes a device object that was created by the NdisRegisterDeviceEx function. NdisDeregisterDeviceEx also removes the symbolic link that is associated with this device object.

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 PASSIVE_LEVEL
DDI compliance rules Irql_Miscellaneous_Function(ndis)

See also

NdisRegisterDeviceEx