#include <stdarg.h>
#include <stdio.h>
#include <windef.h>
#include <winbase.h>
#include <winsock2.h>
#include <iphlpapi.h>
#include <ip2string.h>
#include <netsh.h>
Go to the source code of this file.
◆ _INC_WINDOWS
◆ WIN32_NO_STATUS
◆ RegisterInterfaceHelper()
Definition at line 110 of file interface.c.
111{
113
114 DPRINT(
"RegisterInterfaceHelper()\n");
115
116 ZeroMemory(&HelperAttributes,
sizeof(HelperAttributes));
118 HelperAttributes.
guidHelper = GUID_IFMON_INTERFACE;
122
124}
DWORD WINAPI InterfaceStart(_In_ const GUID *pguidParent, _In_ DWORD dwVersion)
DWORD WINAPI RegisterHelper(_In_ const GUID *pguidParentHelper, _In_ const NS_HELPER_ATTRIBUTES *pHelperAttributes)
PNS_HELPER_STOP_FN pfnStop
PNS_HELPER_START_FN pfnStart
Referenced by InitHelperDll().
◆ RegisterIpHelper()
Definition at line 476 of file ip.c.
477{
479 GUID guidParent = GUID_IFMON_INTERFACE;
480
481 DPRINT1(
"RegisterIpHelper()\n");
482
483 ZeroMemory(&HelperAttributes,
sizeof(HelperAttributes));
489
491}
static DWORD WINAPI IpStart(_In_ const GUID *pguidParent, _In_ DWORD dwVersion)
Referenced by InitHelperDll().
◆ RegisterWinsockHelper()
Definition at line 104 of file winsock.c.
105{
107
108 ZeroMemory(&HelperAttributes,
sizeof(HelperAttributes));
110 HelperAttributes.
guidHelper = GUID_IFMON_WINSOCK;
114
116}
static DWORD WINAPI WinsockStart(_In_ const GUID *pguidParent, _In_ DWORD dwVersion)
Referenced by InitHelperDll().
◆ hDllInstance