-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIPHelper.h
45 lines (35 loc) · 1.4 KB
/
IPHelper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _SIMPLE_IPHELPER_H
#define _SIMPLE_IPHELPER_H
////////////////////////////////////////////////////////////////////////////////
//
// Adapter functions.
//
////////////////////////////////////////////////////////////////////////////////
//Load adapters information list.
extern _BOOL LoadAdaptersInformationList();
//Unload adapters information list.
extern void UnloadAdaptersInformationList();
//Show adapters information list.
extern void ShowAdaptersInformationList();
////////////////////////////////////////////////////////////////////////////////
//
// Interface functions.
//
////////////////////////////////////////////////////////////////////////////////
//Load interface information list.
extern _BOOL LoadInterfaceInformationList();
//Unload interface information list.
extern void UnloadInterfaceInformationList();
//Show interface information list.
extern void ShowInterfaceInformationList();
////////////////////////////////////////////////////////////////////////////////
//
// Other functions.
//
////////////////////////////////////////////////////////////////////////////////
//Set network tunnel local address.
extern _BOOL SetNetworkTunnelLocalAddress(NetworkTunnel* pTunnel);
//Clear network tunnel local address.
extern void ClearNetworkTunnelLocalAddress(NetworkTunnel* pTunnel);
////////////////////////////////////////////////////////////////////////////////
#endif //End of the head file !