msvcrt: Don't include MSVC 7.0+ exception functions in SOs for older DLLs.
[wine.git] / dlls / hnetcfg / port.c
blob7d749650763f79ddfaa21b22f6d30bc8a2810a07
1 /*
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
19 #include "config.h"
20 #include <stdarg.h>
21 #include <stdio.h>
23 #define COBJMACROS
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "ole2.h"
29 #include "netfw.h"
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 INetFwOpenPort INetFwOpenPort_iface;
40 LONG refs;
41 BSTR name;
42 NET_FW_IP_PROTOCOL protocol;
43 LONG port;
44 } fw_port;
46 static inline fw_port *impl_from_INetFwOpenPort( INetFwOpenPort *iface )
48 return CONTAINING_RECORD(iface, fw_port, INetFwOpenPort_iface);
51 static ULONG WINAPI fw_port_AddRef(
52 INetFwOpenPort *iface )
54 fw_port *fw_port = impl_from_INetFwOpenPort( iface );
55 return InterlockedIncrement( &fw_port->refs );
58 static ULONG WINAPI fw_port_Release(
59 INetFwOpenPort *iface )
61 fw_port *fw_port = impl_from_INetFwOpenPort( iface );
62 LONG refs = InterlockedDecrement( &fw_port->refs );
63 if (!refs)
65 TRACE("destroying %p\n", fw_port);
66 SysFreeString( fw_port->name );
67 HeapFree( GetProcessHeap(), 0, fw_port );
69 return refs;
72 static HRESULT WINAPI fw_port_QueryInterface(
73 INetFwOpenPort *iface,
74 REFIID riid,
75 void **ppvObject )
77 fw_port *This = impl_from_INetFwOpenPort( iface );
79 TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
81 if ( IsEqualGUID( riid, &IID_INetFwOpenPort ) ||
82 IsEqualGUID( riid, &IID_IDispatch ) ||
83 IsEqualGUID( riid, &IID_IUnknown ) )
85 *ppvObject = iface;
87 else
89 FIXME("interface %s not implemented\n", debugstr_guid(riid));
90 return E_NOINTERFACE;
92 INetFwOpenPort_AddRef( iface );
93 return S_OK;
96 static HRESULT WINAPI fw_port_GetTypeInfoCount(
97 INetFwOpenPort *iface,
98 UINT *pctinfo )
100 fw_port *This = impl_from_INetFwOpenPort( iface );
102 TRACE("%p %p\n", This, pctinfo);
103 *pctinfo = 1;
104 return S_OK;
107 static HRESULT WINAPI fw_port_GetTypeInfo(
108 INetFwOpenPort *iface,
109 UINT iTInfo,
110 LCID lcid,
111 ITypeInfo **ppTInfo )
113 fw_port *This = impl_from_INetFwOpenPort( iface );
115 TRACE("%p %u %u %p\n", This, iTInfo, lcid, ppTInfo);
116 return get_typeinfo( INetFwOpenPort_tid, ppTInfo );
119 static HRESULT WINAPI fw_port_GetIDsOfNames(
120 INetFwOpenPort *iface,
121 REFIID riid,
122 LPOLESTR *rgszNames,
123 UINT cNames,
124 LCID lcid,
125 DISPID *rgDispId )
127 fw_port *This = impl_from_INetFwOpenPort( iface );
128 ITypeInfo *typeinfo;
129 HRESULT hr;
131 TRACE("%p %s %p %u %u %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
133 hr = get_typeinfo( INetFwOpenPort_tid, &typeinfo );
134 if (SUCCEEDED(hr))
136 hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
137 ITypeInfo_Release( typeinfo );
139 return hr;
142 static HRESULT WINAPI fw_port_Invoke(
143 INetFwOpenPort *iface,
144 DISPID dispIdMember,
145 REFIID riid,
146 LCID lcid,
147 WORD wFlags,
148 DISPPARAMS *pDispParams,
149 VARIANT *pVarResult,
150 EXCEPINFO *pExcepInfo,
151 UINT *puArgErr )
153 fw_port *This = impl_from_INetFwOpenPort( iface );
154 ITypeInfo *typeinfo;
155 HRESULT hr;
157 TRACE("%p %d %s %d %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
158 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
160 hr = get_typeinfo( INetFwOpenPort_tid, &typeinfo );
161 if (SUCCEEDED(hr))
163 hr = ITypeInfo_Invoke( typeinfo, &This->INetFwOpenPort_iface, dispIdMember,
164 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
165 ITypeInfo_Release( typeinfo );
167 return hr;
170 static HRESULT WINAPI fw_port_get_Name(
171 INetFwOpenPort *iface,
172 BSTR *name)
174 fw_port *This = impl_from_INetFwOpenPort( iface );
176 FIXME("%p %p\n", This, name);
177 return E_NOTIMPL;
180 static HRESULT WINAPI fw_port_put_Name(
181 INetFwOpenPort *iface,
182 BSTR name)
184 fw_port *This = impl_from_INetFwOpenPort( iface );
186 TRACE("%p %s\n", This, debugstr_w(name));
188 if (!(name = SysAllocString( name )))
189 return E_OUTOFMEMORY;
191 SysFreeString( This->name );
192 This->name = name;
193 return S_OK;
196 static HRESULT WINAPI fw_port_get_IpVersion(
197 INetFwOpenPort *iface,
198 NET_FW_IP_VERSION *ipVersion)
200 fw_port *This = impl_from_INetFwOpenPort( iface );
202 FIXME("%p %p\n", This, ipVersion);
203 return E_NOTIMPL;
206 static HRESULT WINAPI fw_port_put_IpVersion(
207 INetFwOpenPort *iface,
208 NET_FW_IP_VERSION ipVersion)
210 fw_port *This = impl_from_INetFwOpenPort( iface );
212 FIXME("%p %u\n", This, ipVersion);
213 return E_NOTIMPL;
216 static HRESULT WINAPI fw_port_get_Protocol(
217 INetFwOpenPort *iface,
218 NET_FW_IP_PROTOCOL *ipProtocol)
220 fw_port *This = impl_from_INetFwOpenPort( iface );
222 FIXME("%p %p\n", This, ipProtocol);
223 return E_NOTIMPL;
226 static HRESULT WINAPI fw_port_put_Protocol(
227 INetFwOpenPort *iface,
228 NET_FW_IP_PROTOCOL ipProtocol)
230 fw_port *This = impl_from_INetFwOpenPort( iface );
232 TRACE("%p %u\n", This, ipProtocol);
234 if (ipProtocol != NET_FW_IP_PROTOCOL_TCP && ipProtocol != NET_FW_IP_PROTOCOL_UDP)
235 return E_INVALIDARG;
237 This->protocol = ipProtocol;
238 return S_OK;
241 static HRESULT WINAPI fw_port_get_Port(
242 INetFwOpenPort *iface,
243 LONG *portNumber)
245 fw_port *This = impl_from_INetFwOpenPort( iface );
247 FIXME("%p %p\n", This, portNumber);
248 return E_NOTIMPL;
251 static HRESULT WINAPI fw_port_put_Port(
252 INetFwOpenPort *iface,
253 LONG portNumber)
255 fw_port *This = impl_from_INetFwOpenPort( iface );
257 TRACE("%p %d\n", This, portNumber);
258 This->port = portNumber;
259 return S_OK;
262 static HRESULT WINAPI fw_port_get_Scope(
263 INetFwOpenPort *iface,
264 NET_FW_SCOPE *scope)
266 fw_port *This = impl_from_INetFwOpenPort( iface );
268 FIXME("%p %p\n", This, scope);
269 return E_NOTIMPL;
272 static HRESULT WINAPI fw_port_put_Scope(
273 INetFwOpenPort *iface,
274 NET_FW_SCOPE scope)
276 fw_port *This = impl_from_INetFwOpenPort( iface );
278 FIXME("%p %u\n", This, scope);
279 return E_NOTIMPL;
282 static HRESULT WINAPI fw_port_get_RemoteAddresses(
283 INetFwOpenPort *iface,
284 BSTR *remoteAddrs)
286 fw_port *This = impl_from_INetFwOpenPort( iface );
288 FIXME("%p %p\n", This, remoteAddrs);
289 return E_NOTIMPL;
292 static HRESULT WINAPI fw_port_put_RemoteAddresses(
293 INetFwOpenPort *iface,
294 BSTR remoteAddrs)
296 fw_port *This = impl_from_INetFwOpenPort( iface );
298 FIXME("%p %s\n", This, debugstr_w(remoteAddrs));
299 return E_NOTIMPL;
302 static HRESULT WINAPI fw_port_get_Enabled(
303 INetFwOpenPort *iface,
304 VARIANT_BOOL *enabled)
306 fw_port *This = impl_from_INetFwOpenPort( iface );
308 FIXME("%p %p\n", This, enabled);
310 *enabled = VARIANT_TRUE;
311 return S_OK;
314 static HRESULT WINAPI fw_port_put_Enabled(
315 INetFwOpenPort *iface,
316 VARIANT_BOOL enabled)
318 fw_port *This = impl_from_INetFwOpenPort( iface );
320 FIXME("%p %d\n", This, enabled);
321 return S_OK;
324 static HRESULT WINAPI fw_port_get_BuiltIn(
325 INetFwOpenPort *iface,
326 VARIANT_BOOL *builtIn)
328 fw_port *This = impl_from_INetFwOpenPort( iface );
330 FIXME("%p %p\n", This, builtIn);
331 return E_NOTIMPL;
334 static const struct INetFwOpenPortVtbl fw_port_vtbl =
336 fw_port_QueryInterface,
337 fw_port_AddRef,
338 fw_port_Release,
339 fw_port_GetTypeInfoCount,
340 fw_port_GetTypeInfo,
341 fw_port_GetIDsOfNames,
342 fw_port_Invoke,
343 fw_port_get_Name,
344 fw_port_put_Name,
345 fw_port_get_IpVersion,
346 fw_port_put_IpVersion,
347 fw_port_get_Protocol,
348 fw_port_put_Protocol,
349 fw_port_get_Port,
350 fw_port_put_Port,
351 fw_port_get_Scope,
352 fw_port_put_Scope,
353 fw_port_get_RemoteAddresses,
354 fw_port_put_RemoteAddresses,
355 fw_port_get_Enabled,
356 fw_port_put_Enabled,
357 fw_port_get_BuiltIn
360 HRESULT NetFwOpenPort_create( IUnknown *pUnkOuter, LPVOID *ppObj )
362 fw_port *fp;
364 TRACE("(%p,%p)\n", pUnkOuter, ppObj);
366 fp = HeapAlloc( GetProcessHeap(), 0, sizeof(*fp) );
367 if (!fp) return E_OUTOFMEMORY;
369 fp->INetFwOpenPort_iface.lpVtbl = &fw_port_vtbl;
370 fp->refs = 1;
371 fp->name = NULL;
372 fp->protocol = NET_FW_IP_PROTOCOL_TCP;
373 fp->port = 0;
375 *ppObj = &fp->INetFwOpenPort_iface;
377 TRACE("returning iface %p\n", *ppObj);
378 return S_OK;
381 typedef struct fw_ports
383 INetFwOpenPorts INetFwOpenPorts_iface;
384 LONG refs;
385 } fw_ports;
387 static inline fw_ports *impl_from_INetFwOpenPorts( INetFwOpenPorts *iface )
389 return CONTAINING_RECORD(iface, fw_ports, INetFwOpenPorts_iface);
392 static ULONG WINAPI fw_ports_AddRef(
393 INetFwOpenPorts *iface )
395 fw_ports *fw_ports = impl_from_INetFwOpenPorts( iface );
396 return InterlockedIncrement( &fw_ports->refs );
399 static ULONG WINAPI fw_ports_Release(
400 INetFwOpenPorts *iface )
402 fw_ports *fw_ports = impl_from_INetFwOpenPorts( iface );
403 LONG refs = InterlockedDecrement( &fw_ports->refs );
404 if (!refs)
406 TRACE("destroying %p\n", fw_ports);
407 HeapFree( GetProcessHeap(), 0, fw_ports );
409 return refs;
412 static HRESULT WINAPI fw_ports_QueryInterface(
413 INetFwOpenPorts *iface,
414 REFIID riid,
415 void **ppvObject )
417 fw_ports *This = impl_from_INetFwOpenPorts( iface );
419 TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
421 if ( IsEqualGUID( riid, &IID_INetFwOpenPorts ) ||
422 IsEqualGUID( riid, &IID_IDispatch ) ||
423 IsEqualGUID( riid, &IID_IUnknown ) )
425 *ppvObject = iface;
427 else
429 FIXME("interface %s not implemented\n", debugstr_guid(riid));
430 return E_NOINTERFACE;
432 INetFwOpenPorts_AddRef( iface );
433 return S_OK;
436 static HRESULT WINAPI fw_ports_GetTypeInfoCount(
437 INetFwOpenPorts *iface,
438 UINT *pctinfo )
440 fw_ports *This = impl_from_INetFwOpenPorts( iface );
442 TRACE("%p %p\n", This, pctinfo);
443 *pctinfo = 1;
444 return S_OK;
447 static HRESULT WINAPI fw_ports_GetTypeInfo(
448 INetFwOpenPorts *iface,
449 UINT iTInfo,
450 LCID lcid,
451 ITypeInfo **ppTInfo )
453 fw_ports *This = impl_from_INetFwOpenPorts( iface );
455 TRACE("%p %u %u %p\n", This, iTInfo, lcid, ppTInfo);
456 return get_typeinfo( INetFwOpenPorts_tid, ppTInfo );
459 static HRESULT WINAPI fw_ports_GetIDsOfNames(
460 INetFwOpenPorts *iface,
461 REFIID riid,
462 LPOLESTR *rgszNames,
463 UINT cNames,
464 LCID lcid,
465 DISPID *rgDispId )
467 fw_ports *This = impl_from_INetFwOpenPorts( iface );
468 ITypeInfo *typeinfo;
469 HRESULT hr;
471 TRACE("%p %s %p %u %u %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
473 hr = get_typeinfo( INetFwOpenPorts_tid, &typeinfo );
474 if (SUCCEEDED(hr))
476 hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
477 ITypeInfo_Release( typeinfo );
479 return hr;
482 static HRESULT WINAPI fw_ports_Invoke(
483 INetFwOpenPorts *iface,
484 DISPID dispIdMember,
485 REFIID riid,
486 LCID lcid,
487 WORD wFlags,
488 DISPPARAMS *pDispParams,
489 VARIANT *pVarResult,
490 EXCEPINFO *pExcepInfo,
491 UINT *puArgErr )
493 fw_ports *This = impl_from_INetFwOpenPorts( iface );
494 ITypeInfo *typeinfo;
495 HRESULT hr;
497 TRACE("%p %d %s %d %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
498 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
500 hr = get_typeinfo( INetFwOpenPorts_tid, &typeinfo );
501 if (SUCCEEDED(hr))
503 hr = ITypeInfo_Invoke( typeinfo, &This->INetFwOpenPorts_iface, dispIdMember,
504 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
505 ITypeInfo_Release( typeinfo );
507 return hr;
510 static HRESULT WINAPI fw_ports_get_Count(
511 INetFwOpenPorts *iface,
512 LONG *count)
514 fw_ports *This = impl_from_INetFwOpenPorts( iface );
516 FIXME("%p, %p\n", This, count);
518 *count = 0;
519 return S_OK;
522 static HRESULT WINAPI fw_ports_Add(
523 INetFwOpenPorts *iface,
524 INetFwOpenPort *port)
526 fw_ports *This = impl_from_INetFwOpenPorts( iface );
528 FIXME("%p, %p\n", This, port);
529 return S_OK;
532 static HRESULT WINAPI fw_ports_Remove(
533 INetFwOpenPorts *iface,
534 LONG portNumber,
535 NET_FW_IP_PROTOCOL ipProtocol)
537 fw_ports *This = impl_from_INetFwOpenPorts( iface );
539 FIXME("%p, %d, %u\n", This, portNumber, ipProtocol);
540 return E_NOTIMPL;
543 static HRESULT WINAPI fw_ports_Item(
544 INetFwOpenPorts *iface,
545 LONG portNumber,
546 NET_FW_IP_PROTOCOL ipProtocol,
547 INetFwOpenPort **openPort)
549 HRESULT hr;
550 fw_ports *This = impl_from_INetFwOpenPorts( iface );
552 FIXME("%p, %d, %u, %p\n", This, portNumber, ipProtocol, openPort);
554 hr = NetFwOpenPort_create( NULL, (void **)openPort );
555 if (SUCCEEDED(hr))
557 INetFwOpenPort_put_Protocol( *openPort, ipProtocol );
558 INetFwOpenPort_put_Port( *openPort, portNumber );
560 return hr;
563 static HRESULT WINAPI fw_ports_get__NewEnum(
564 INetFwOpenPorts *iface,
565 IUnknown **newEnum)
567 fw_ports *This = impl_from_INetFwOpenPorts( iface );
569 FIXME("%p, %p\n", This, newEnum);
570 return E_NOTIMPL;
573 static const struct INetFwOpenPortsVtbl fw_ports_vtbl =
575 fw_ports_QueryInterface,
576 fw_ports_AddRef,
577 fw_ports_Release,
578 fw_ports_GetTypeInfoCount,
579 fw_ports_GetTypeInfo,
580 fw_ports_GetIDsOfNames,
581 fw_ports_Invoke,
582 fw_ports_get_Count,
583 fw_ports_Add,
584 fw_ports_Remove,
585 fw_ports_Item,
586 fw_ports_get__NewEnum
589 HRESULT NetFwOpenPorts_create( IUnknown *pUnkOuter, LPVOID *ppObj )
591 fw_ports *fp;
593 TRACE("(%p,%p)\n", pUnkOuter, ppObj);
595 fp = HeapAlloc( GetProcessHeap(), 0, sizeof(*fp) );
596 if (!fp) return E_OUTOFMEMORY;
598 fp->INetFwOpenPorts_iface.lpVtbl = &fw_ports_vtbl;
599 fp->refs = 1;
601 *ppObj = &fp->INetFwOpenPorts_iface;
603 TRACE("returning iface %p\n", *ppObj);
604 return S_OK;