2 * Copyright 2009 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
34 #include "hnetcfg_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg
);
38 typedef struct fw_manager
40 INetFwMgr INetFwMgr_iface
;
44 static inline fw_manager
*impl_from_INetFwMgr( INetFwMgr
*iface
)
46 return CONTAINING_RECORD(iface
, fw_manager
, INetFwMgr_iface
);
49 static ULONG WINAPI
fw_manager_AddRef(
52 fw_manager
*fw_manager
= impl_from_INetFwMgr( iface
);
53 return InterlockedIncrement( &fw_manager
->refs
);
56 static ULONG WINAPI
fw_manager_Release(
59 fw_manager
*fw_manager
= impl_from_INetFwMgr( iface
);
60 LONG refs
= InterlockedDecrement( &fw_manager
->refs
);
63 TRACE("destroying %p\n", fw_manager
);
64 HeapFree( GetProcessHeap(), 0, fw_manager
);
69 static HRESULT WINAPI
fw_manager_QueryInterface(
74 fw_manager
*This
= impl_from_INetFwMgr( iface
);
76 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppvObject
);
78 if ( IsEqualGUID( riid
, &IID_INetFwMgr
) ||
79 IsEqualGUID( riid
, &IID_IDispatch
) ||
80 IsEqualGUID( riid
, &IID_IUnknown
) )
86 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
89 INetFwMgr_AddRef( iface
);
93 static HRESULT WINAPI
fw_manager_GetTypeInfoCount(
97 fw_manager
*This
= impl_from_INetFwMgr( iface
);
99 FIXME("%p %p\n", This
, pctinfo
);
103 static HRESULT WINAPI
fw_manager_GetTypeInfo(
107 ITypeInfo
**ppTInfo
)
109 fw_manager
*This
= impl_from_INetFwMgr( iface
);
111 FIXME("%p %u %u %p\n", This
, iTInfo
, lcid
, ppTInfo
);
115 static HRESULT WINAPI
fw_manager_GetIDsOfNames(
123 fw_manager
*This
= impl_from_INetFwMgr( iface
);
125 FIXME("%p %s %p %u %u %p\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
129 static HRESULT WINAPI
fw_manager_Invoke(
135 DISPPARAMS
*pDispParams
,
137 EXCEPINFO
*pExcepInfo
,
140 fw_manager
*This
= impl_from_INetFwMgr( iface
);
142 FIXME("%p %d %s %d %d %p %p %p %p\n", This
, dispIdMember
, debugstr_guid(riid
),
143 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
147 static HRESULT WINAPI
fw_manager_get_LocalPolicy(
149 INetFwPolicy
**localPolicy
)
151 fw_manager
*This
= impl_from_INetFwMgr( iface
);
153 TRACE("%p, %p\n", This
, localPolicy
);
154 return NetFwPolicy_create( NULL
, (void **)localPolicy
);
157 static HRESULT WINAPI
fw_manager_get_CurrentProfileType(
159 NET_FW_PROFILE_TYPE
*profileType
)
161 fw_manager
*This
= impl_from_INetFwMgr( iface
);
163 FIXME("%p, %p\n", This
, profileType
);
167 static HRESULT WINAPI
fw_manager_RestoreDefaults(
170 fw_manager
*This
= impl_from_INetFwMgr( iface
);
176 static HRESULT WINAPI
fw_manager_IsPortAllowed(
179 NET_FW_IP_VERSION ipVersion
,
182 NET_FW_IP_PROTOCOL ipProtocol
,
184 VARIANT
*restricted
)
186 fw_manager
*This
= impl_from_INetFwMgr( iface
);
188 FIXME("%p, %s, %u, %d, %s, %u, %p, %p\n", This
, debugstr_w(imageFileName
),
189 ipVersion
, portNumber
, debugstr_w(localAddress
), ipProtocol
, allowed
, restricted
);
193 static HRESULT WINAPI
fw_manager_IsIcmpTypeAllowed(
195 NET_FW_IP_VERSION ipVersion
,
199 VARIANT
*restricted
)
201 fw_manager
*This
= impl_from_INetFwMgr( iface
);
203 FIXME("%p, %u, %s, %u, %p, %p\n", This
, ipVersion
, debugstr_w(localAddress
),
204 type
, allowed
, restricted
);
208 static const struct INetFwMgrVtbl fw_manager_vtbl
=
210 fw_manager_QueryInterface
,
213 fw_manager_GetTypeInfoCount
,
214 fw_manager_GetTypeInfo
,
215 fw_manager_GetIDsOfNames
,
217 fw_manager_get_LocalPolicy
,
218 fw_manager_get_CurrentProfileType
,
219 fw_manager_RestoreDefaults
,
220 fw_manager_IsPortAllowed
,
221 fw_manager_IsIcmpTypeAllowed
224 HRESULT
NetFwMgr_create( IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
228 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
230 fm
= HeapAlloc( GetProcessHeap(), 0, sizeof(*fm
) );
231 if (!fm
) return E_OUTOFMEMORY
;
233 fm
->INetFwMgr_iface
.lpVtbl
= &fw_manager_vtbl
;
236 *ppObj
= &fm
->INetFwMgr_iface
;
238 TRACE("returning iface %p\n", *ppObj
);