PktMonClntUninitialize - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// pktmonclntk.h

VOID PktMonClntUninitialize();
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-pktmonclntk-pktmonclntuninitialize)

Description

The PktMonClntUninitialize function uninitializes the kernel driver that is acting as a Packet Monitor client and was previously initialized through PktMonClntInitialize.

Remarks

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.

See also

Example

VOID
PktMonApiTstUnload(
    _In_ PDRIVER_OBJECT DriverObject
    )
{
    ...
    PktMonClntUninitialize();
    ...
}