Edit

Share via


PktMonClntUninitialize function (pktmonclntk.h)

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

Syntax

void PktMonClntUninitialize();

Return value

None

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.

Requirements

Requirement Value
Header pktmonclntk.h

See also

Example

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