1 | /* $Id: VBoxNetCfg-win.h 53090 2014-10-20 11:13:03Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Network Configuration API for Windows platforms.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2012 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef ___VBox_VBoxNetCfg_win_h
|
---|
28 | #define ___VBox_VBoxNetCfg_win_h
|
---|
29 |
|
---|
30 | #include <winsock2.h>
|
---|
31 | #include <Windows.h>
|
---|
32 | #include <Netcfgn.h>
|
---|
33 | #include <Setupapi.h>
|
---|
34 | #include <VBox/cdefs.h>
|
---|
35 |
|
---|
36 | /** @defgroup grp_vboxnetcfgwin The Windows Network Configration Library
|
---|
37 | * @{ */
|
---|
38 |
|
---|
39 | /** @def VBOXNETCFGWIN_DECL
|
---|
40 | * The usual declaration wrapper.
|
---|
41 | */
|
---|
42 | #if 0
|
---|
43 | /* enable this in case we include this in a dll*/
|
---|
44 | # ifdef IN_VBOXDDU
|
---|
45 | # define VBOXNETCFGWIN_DECL(a_Type) DECLEXPORT(a_Type)
|
---|
46 | # else
|
---|
47 | # define VBOXNETCFGWIN_DECL(a_Type) DECLIMPORT(a_Type)
|
---|
48 | # endif
|
---|
49 | #else
|
---|
50 | /*enable this in case we include this in a static lib*/
|
---|
51 | # define VBOXNETCFGWIN_DECL(a_Type) a_Type VBOXCALL
|
---|
52 | #endif
|
---|
53 |
|
---|
54 | RT_C_DECLS_BEGIN
|
---|
55 |
|
---|
56 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinQueryINetCfg(OUT INetCfg **ppNetCfg,
|
---|
57 | IN BOOL fGetWriteLock,
|
---|
58 | IN LPCWSTR pszwClientDescription,
|
---|
59 | IN DWORD cmsTimeout,
|
---|
60 | OUT LPWSTR *ppszwClientDescription);
|
---|
61 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinReleaseINetCfg(IN INetCfg *pNetCfg, IN BOOL fHasWriteLock);
|
---|
62 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinGetComponentByGuid(IN INetCfg *pNc, IN const GUID *pguidClass,
|
---|
63 | IN const GUID * pComponentGuid, OUT INetCfgComponent **ppncc);
|
---|
64 |
|
---|
65 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetFltInstall(IN INetCfg *pNc, IN LPCWSTR const * apInfFullPaths, IN UINT cInfFullPaths);
|
---|
66 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetFltUninstall(IN INetCfg *pNc);
|
---|
67 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetLwfInstall(IN INetCfg *pNc, IN LPCWSTR const pInfFullPath);
|
---|
68 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetLwfUninstall(IN INetCfg *pNc);
|
---|
69 |
|
---|
70 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinNetAdpUninstall(IN INetCfg *pNc, IN LPCWSTR pwszId);
|
---|
71 |
|
---|
72 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinCreateHostOnlyNetworkInterface(IN LPCWSTR pInfPath, IN bool bIsInfPathFile,
|
---|
73 | OUT GUID *pGuid, OUT BSTR *lppszName,
|
---|
74 | OUT BSTR *pErrMsg);
|
---|
75 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinUpdateHostOnlyNetworkInterface(LPCWSTR pcsxwInf, BOOL *pbRebootRequired, LPCWSTR pcsxwId);
|
---|
76 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinRemoveHostOnlyNetworkInterface(IN const GUID *pGUID, OUT BSTR *pErrMsg);
|
---|
77 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinRemoveAllNetDevicesOfId(IN LPCWSTR lpszPnPId);
|
---|
78 |
|
---|
79 | typedef enum
|
---|
80 | {
|
---|
81 | VBOXNECTFGWINPROPCHANGE_TYPE_UNDEFINED = 0,
|
---|
82 | VBOXNECTFGWINPROPCHANGE_TYPE_DISABLE,
|
---|
83 | VBOXNECTFGWINPROPCHANGE_TYPE_ENABLE
|
---|
84 | } VBOXNECTFGWINPROPCHANGE_TYPE;
|
---|
85 |
|
---|
86 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinPropChangeAllNetDevicesOfId(IN LPCWSTR lpszPnPId, VBOXNECTFGWINPROPCHANGE_TYPE enmPcType);
|
---|
87 |
|
---|
88 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinGenHostOnlyNetworkNetworkIp(OUT PULONG pNetIp, OUT PULONG pNetMask);
|
---|
89 |
|
---|
90 | typedef struct ADAPTER_SETTINGS
|
---|
91 | {
|
---|
92 | ULONG ip;
|
---|
93 | ULONG mask;
|
---|
94 | BOOL bDhcp;
|
---|
95 | } ADAPTER_SETTINGS, *PADAPTER_SETTINGS; /**< I'm not prefixed */
|
---|
96 |
|
---|
97 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinEnableStaticIpConfig(IN const GUID *pGuid, IN ULONG ip, IN ULONG mask);
|
---|
98 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinGetAdapterSettings(IN const GUID * pGuid, OUT PADAPTER_SETTINGS pSettings);
|
---|
99 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinEnableDynamicIpConfig(IN const GUID *pGuid);
|
---|
100 | VBOXNETCFGWIN_DECL(HRESULT) VBoxNetCfgWinDhcpRediscover(IN const GUID *pGuid);
|
---|
101 |
|
---|
102 |
|
---|
103 | typedef VOID (*LOG_ROUTINE)(LPCSTR szString); /**< I'm not prefixed. */
|
---|
104 | VBOXNETCFGWIN_DECL(VOID) VBoxNetCfgWinSetLogging(IN LOG_ROUTINE pfnLog);
|
---|
105 |
|
---|
106 | RT_C_DECLS_END
|
---|
107 |
|
---|
108 | /** @} */
|
---|
109 |
|
---|
110 | #endif
|
---|
111 |
|
---|