// ks.h
KSDDKAPI VOID KsNullDriverUnload(
[in] PDRIVER_OBJECT DriverObject
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsNullDriverUnload function is a default function a driver can use when it has no other tasks to do in its unload function, but must still allow the device to be unloaded by its presence.
DriverObject [in]Specifies the driver object for this device.
None