-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistration.h
51 lines (41 loc) · 1.6 KB
/
Registration.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
46
47
48
49
50
51
#ifndef _SIMPLE_REGISTRATION_H
#define _SIMPLE_REGISTRATION_H
////////////////////////////////////////////////////////////////////////////////
//
// Adapter functions.
//
////////////////////////////////////////////////////////////////////////////////
//Load network adapters.
extern _BOOL LoadNetworkAdapters();
//Release network adapters.
extern void ReleaseNetworkAdapters();
//Show network adapters.
extern void ShowNetworkAdapters();
//Check network adapter by guid.
extern _BOOL CheckNetworkAdapterByGuid(_STRING lpstrGuid);
////////////////////////////////////////////////////////////////////////////////
//
// Connection functions.
//
////////////////////////////////////////////////////////////////////////////////
//Load network connections.
extern _BOOL LoadNetworkConnections();
//Release network connection.
extern void ReleaseNetworkConnections();
//Show network connections.
extern void ShowNetworkConnections();
//Get network connection name by guid.
extern _STRING GetNetworkConnectionNameByGuid(_STRING lpstrGuid);
//Get network connection guid by name.
extern _STRING GetNetworkConnectionGuidByName(_STRING lpstrConnectionName);
////////////////////////////////////////////////////////////////////////////////
//
// Other functions.
//
////////////////////////////////////////////////////////////////////////////////
//Is network Tunnel exists.
extern _BOOL IsNetworkTunnelExists(_STRING lpstrAdapterName);
//Get network tunnel guid.
extern _STRING GetNetworkTunnelGuid(_STRING lpstrAdapterName);
////////////////////////////////////////////////////////////////////////////////
#endif //End of the head file !