#include <stdarg.h>
#include <stdio.h>
#include <windows.h>
#include <winsock2.h>
#include <iphlpapi.h>
#include <ip2string.h>
#include <iphlpapi_undoc.h>
#include <netcfgx.h>
#include <netcfgn.h>
#include <netcfgx_undoc.h>
#include <netcfgn_undoc.h>
#include <netsh.h>
Go to the source code of this file.
◆ 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 599 of file ip.c.
600{
602 GUID guidParent = GUID_IFMON_INTERFACE;
603
604 DPRINT1(
"RegisterIpHelper()\n");
605
606 ZeroMemory(&HelperAttributes,
sizeof(HelperAttributes));
612
614}
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