// pktmonclntk.h
VOID PktMonClntUninitialize();
View the official Windows Driver Kit DDI referenceNo description available.
The PktMonClntUninitialize function uninitializes the kernel driver that is acting as a Packet Monitor client and was previously initialized through PktMonClntInitialize.
This function unregisters components that were previously registered by the client and have not been unregistered up to that point. This allows Packet Monitor to free resources that will not be used anymore.
VOID
PktMonApiTstUnload(
_In_ PDRIVER_OBJECT DriverObject
)
{
...
PktMonClntUninitialize();
...
}