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
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
33 #include "hnetcfg_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg
);
37 typedef struct fw_port
39 const INetFwOpenPortVtbl
*vtbl
;
43 static inline fw_port
*impl_from_INetFwOpenPort( INetFwOpenPort
*iface
)
45 return (fw_port
*)((char *)iface
- FIELD_OFFSET( fw_port
, vtbl
));
48 static ULONG WINAPI
fw_port_AddRef(
49 INetFwOpenPort
*iface
)
51 fw_port
*fw_port
= impl_from_INetFwOpenPort( iface
);
52 return InterlockedIncrement( &fw_port
->refs
);
55 static ULONG WINAPI
fw_port_Release(
56 INetFwOpenPort
*iface
)
58 fw_port
*fw_port
= impl_from_INetFwOpenPort( iface
);
59 LONG refs
= InterlockedDecrement( &fw_port
->refs
);
62 TRACE("destroying %p\n", fw_port
);
63 HeapFree( GetProcessHeap(), 0, fw_port
);
68 static HRESULT WINAPI
fw_port_QueryInterface(
69 INetFwOpenPort
*iface
,
73 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
75 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppvObject
);
77 if ( IsEqualGUID( riid
, &IID_INetFwOpenPort
) ||
78 IsEqualGUID( riid
, &IID_IDispatch
) ||
79 IsEqualGUID( riid
, &IID_IUnknown
) )
85 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
88 INetFwOpenPort_AddRef( iface
);
92 static HRESULT WINAPI
fw_port_GetTypeInfoCount(
93 INetFwOpenPort
*iface
,
96 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
98 FIXME("%p %p\n", This
, pctinfo
);
102 static HRESULT WINAPI
fw_port_GetTypeInfo(
103 INetFwOpenPort
*iface
,
106 ITypeInfo
**ppTInfo
)
108 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
110 FIXME("%p %u %u %p\n", This
, iTInfo
, lcid
, ppTInfo
);
114 static HRESULT WINAPI
fw_port_GetIDsOfNames(
115 INetFwOpenPort
*iface
,
122 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
124 FIXME("%p %s %p %u %u %p\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
128 static HRESULT WINAPI
fw_port_Invoke(
129 INetFwOpenPort
*iface
,
134 DISPPARAMS
*pDispParams
,
136 EXCEPINFO
*pExcepInfo
,
139 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
141 FIXME("%p %d %s %d %d %p %p %p %p\n", This
, dispIdMember
, debugstr_guid(riid
),
142 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
146 static HRESULT WINAPI
fw_port_get_Name(
147 INetFwOpenPort
*iface
,
150 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
152 FIXME("%p %p\n", This
, name
);
156 static HRESULT WINAPI
fw_port_put_Name(
157 INetFwOpenPort
*iface
,
160 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
162 FIXME("%p %s\n", This
, debugstr_w(name
));
166 static HRESULT WINAPI
fw_port_get_IpVersion(
167 INetFwOpenPort
*iface
,
168 NET_FW_IP_VERSION
*ipVersion
)
170 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
172 FIXME("%p %p\n", This
, ipVersion
);
176 static HRESULT WINAPI
fw_port_put_IpVersion(
177 INetFwOpenPort
*iface
,
178 NET_FW_IP_VERSION ipVersion
)
180 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
182 FIXME("%p %u\n", This
, ipVersion
);
186 static HRESULT WINAPI
fw_port_get_Protocol(
187 INetFwOpenPort
*iface
,
188 NET_FW_IP_PROTOCOL
*ipProtocol
)
190 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
192 FIXME("%p %p\n", This
, ipProtocol
);
196 static HRESULT WINAPI
fw_port_put_Protocol(
197 INetFwOpenPort
*iface
,
198 NET_FW_IP_PROTOCOL ipProtocol
)
200 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
202 FIXME("%p %u\n", This
, ipProtocol
);
206 static HRESULT WINAPI
fw_port_get_Port(
207 INetFwOpenPort
*iface
,
210 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
212 FIXME("%p %p\n", This
, portNumber
);
216 static HRESULT WINAPI
fw_port_put_Port(
217 INetFwOpenPort
*iface
,
220 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
222 FIXME("%p %d\n", This
, portNumber
);
226 static HRESULT WINAPI
fw_port_get_Scope(
227 INetFwOpenPort
*iface
,
230 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
232 FIXME("%p %p\n", This
, scope
);
236 static HRESULT WINAPI
fw_port_put_Scope(
237 INetFwOpenPort
*iface
,
240 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
242 FIXME("%p %u\n", This
, scope
);
246 static HRESULT WINAPI
fw_port_get_RemoteAddresses(
247 INetFwOpenPort
*iface
,
250 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
252 FIXME("%p %p\n", This
, remoteAddrs
);
256 static HRESULT WINAPI
fw_port_put_RemoteAddresses(
257 INetFwOpenPort
*iface
,
260 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
262 FIXME("%p %s\n", This
, debugstr_w(remoteAddrs
));
266 static HRESULT WINAPI
fw_port_get_Enabled(
267 INetFwOpenPort
*iface
,
268 VARIANT_BOOL
*enabled
)
270 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
272 FIXME("%p %p\n", This
, enabled
);
276 static HRESULT WINAPI
fw_port_put_Enabled(
277 INetFwOpenPort
*iface
,
278 VARIANT_BOOL enabled
)
280 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
282 FIXME("%p %d\n", This
, enabled
);
286 static HRESULT WINAPI
fw_port_get_BuiltIn(
287 INetFwOpenPort
*iface
,
288 VARIANT_BOOL
*builtIn
)
290 fw_port
*This
= impl_from_INetFwOpenPort( iface
);
292 FIXME("%p %p\n", This
, builtIn
);
296 static const struct INetFwOpenPortVtbl fw_port_vtbl
=
298 fw_port_QueryInterface
,
301 fw_port_GetTypeInfoCount
,
303 fw_port_GetIDsOfNames
,
307 fw_port_get_IpVersion
,
308 fw_port_put_IpVersion
,
309 fw_port_get_Protocol
,
310 fw_port_put_Protocol
,
315 fw_port_get_RemoteAddresses
,
316 fw_port_put_RemoteAddresses
,
322 static HRESULT
NetFwOpenPort_create( IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
326 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
328 fp
= HeapAlloc( GetProcessHeap(), 0, sizeof(*fp
) );
329 if (!fp
) return E_OUTOFMEMORY
;
331 fp
->vtbl
= &fw_port_vtbl
;
336 TRACE("returning iface %p\n", *ppObj
);
340 typedef struct fw_ports
342 const INetFwOpenPortsVtbl
*vtbl
;
346 static inline fw_ports
*impl_from_INetFwOpenPorts( INetFwOpenPorts
*iface
)
348 return (fw_ports
*)((char *)iface
- FIELD_OFFSET( fw_ports
, vtbl
));
351 static ULONG WINAPI
fw_ports_AddRef(
352 INetFwOpenPorts
*iface
)
354 fw_ports
*fw_ports
= impl_from_INetFwOpenPorts( iface
);
355 return InterlockedIncrement( &fw_ports
->refs
);
358 static ULONG WINAPI
fw_ports_Release(
359 INetFwOpenPorts
*iface
)
361 fw_ports
*fw_ports
= impl_from_INetFwOpenPorts( iface
);
362 LONG refs
= InterlockedDecrement( &fw_ports
->refs
);
365 TRACE("destroying %p\n", fw_ports
);
366 HeapFree( GetProcessHeap(), 0, fw_ports
);
371 static HRESULT WINAPI
fw_ports_QueryInterface(
372 INetFwOpenPorts
*iface
,
376 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
378 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppvObject
);
380 if ( IsEqualGUID( riid
, &IID_INetFwOpenPorts
) ||
381 IsEqualGUID( riid
, &IID_IDispatch
) ||
382 IsEqualGUID( riid
, &IID_IUnknown
) )
388 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
389 return E_NOINTERFACE
;
391 INetFwOpenPorts_AddRef( iface
);
395 static HRESULT WINAPI
fw_ports_GetTypeInfoCount(
396 INetFwOpenPorts
*iface
,
399 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
401 FIXME("%p %p\n", This
, pctinfo
);
405 static HRESULT WINAPI
fw_ports_GetTypeInfo(
406 INetFwOpenPorts
*iface
,
409 ITypeInfo
**ppTInfo
)
411 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
413 FIXME("%p %u %u %p\n", This
, iTInfo
, lcid
, ppTInfo
);
417 static HRESULT WINAPI
fw_ports_GetIDsOfNames(
418 INetFwOpenPorts
*iface
,
425 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
427 FIXME("%p %s %p %u %u %p\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
431 static HRESULT WINAPI
fw_ports_Invoke(
432 INetFwOpenPorts
*iface
,
437 DISPPARAMS
*pDispParams
,
439 EXCEPINFO
*pExcepInfo
,
442 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
444 FIXME("%p %d %s %d %d %p %p %p %p\n", This
, dispIdMember
, debugstr_guid(riid
),
445 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
449 static HRESULT WINAPI
fw_ports_get_Count(
450 INetFwOpenPorts
*iface
,
453 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
455 FIXME("%p, %p\n", This
, count
);
461 static HRESULT WINAPI
fw_ports_Add(
462 INetFwOpenPorts
*iface
,
463 INetFwOpenPort
*port
)
465 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
467 FIXME("%p, %p\n", This
, port
);
471 static HRESULT WINAPI
fw_ports_Remove(
472 INetFwOpenPorts
*iface
,
474 NET_FW_IP_PROTOCOL ipProtocol
)
476 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
478 FIXME("%p, %d, %u\n", This
, portNumber
, ipProtocol
);
482 static HRESULT WINAPI
fw_ports_Item(
483 INetFwOpenPorts
*iface
,
485 NET_FW_IP_PROTOCOL ipProtocol
,
486 INetFwOpenPort
**openPort
)
489 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
491 FIXME("%p, %d, %u, %p\n", This
, portNumber
, ipProtocol
, openPort
);
493 hr
= NetFwOpenPort_create( NULL
, (void **)openPort
);
496 INetFwOpenPort_put_Protocol( *openPort
, ipProtocol
);
497 INetFwOpenPort_put_Port( *openPort
, portNumber
);
502 static HRESULT WINAPI
fw_ports_get__NewEnum(
503 INetFwOpenPorts
*iface
,
506 fw_ports
*This
= impl_from_INetFwOpenPorts( iface
);
508 FIXME("%p, %p\n", This
, newEnum
);
512 static const struct INetFwOpenPortsVtbl fw_ports_vtbl
=
514 fw_ports_QueryInterface
,
517 fw_ports_GetTypeInfoCount
,
518 fw_ports_GetTypeInfo
,
519 fw_ports_GetIDsOfNames
,
525 fw_ports_get__NewEnum
528 HRESULT
NetFwOpenPorts_create( IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
532 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
534 fp
= HeapAlloc( GetProcessHeap(), 0, sizeof(*fp
) );
535 if (!fp
) return E_OUTOFMEMORY
;
537 fp
->vtbl
= &fw_ports_vtbl
;
542 TRACE("returning iface %p\n", *ppObj
);