[2/2] hnetcfg: Add stub implementations of INetFwServices and INetFwService.

Hans Leidekker hans at codeweavers.com
Mon Oct 12 06:38:57 CDT 2009


---
 dlls/hnetcfg/Makefile.in       |    3 +-
 dlls/hnetcfg/hnetcfg_private.h |    1 +
 dlls/hnetcfg/profile.c         |    4 +-
 dlls/hnetcfg/service.c         |  479 ++++++++++++++++++++++++++++++++++++++++
 4 files changed, 484 insertions(+), 3 deletions(-)
 create mode 100644 dlls/hnetcfg/service.c

diff --git a/dlls/hnetcfg/Makefile.in b/dlls/hnetcfg/Makefile.in
index 03844bd..4f448bc 100644
--- a/dlls/hnetcfg/Makefile.in
+++ b/dlls/hnetcfg/Makefile.in
@@ -12,7 +12,8 @@ C_SRCS = \
 	policy.c \
 	port.c \
 	profile.c \
-	regsvr.c
+	regsvr.c \
+	service.c
 
 @MAKE_DLL_RULES@
 
diff --git a/dlls/hnetcfg/hnetcfg_private.h b/dlls/hnetcfg/hnetcfg_private.h
index c1f561d..c64bdc2 100644
--- a/dlls/hnetcfg/hnetcfg_private.h
+++ b/dlls/hnetcfg/hnetcfg_private.h
@@ -22,3 +22,4 @@ HRESULT NetFwProfile_create(IUnknown *, LPVOID *);
 HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *);
 HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *);
 HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *);
+HRESULT NetFwServices_create(IUnknown *, LPVOID *);
diff --git a/dlls/hnetcfg/profile.c b/dlls/hnetcfg/profile.c
index 5e9ea47..8536bd7 100644
--- a/dlls/hnetcfg/profile.c
+++ b/dlls/hnetcfg/profile.c
@@ -271,8 +271,8 @@ static HRESULT WINAPI fw_profile_get_Services(
 {
     fw_profile *This = impl_from_INetFwProfile( iface );
 
-    FIXME("%p, %p\n", This, Services);
-    return E_NOTIMPL;
+    TRACE("%p, %p\n", This, Services);
+    return NetFwServices_create( NULL, (void **)Services );
 }
 
 static HRESULT WINAPI fw_profile_get_AuthorizedApplications(
diff --git a/dlls/hnetcfg/service.c b/dlls/hnetcfg/service.c
new file mode 100644
index 0000000..be30d8a
--- /dev/null
+++ b/dlls/hnetcfg/service.c
@@ -0,0 +1,479 @@
+/*
+ * Copyright 2009 Hans Leidekker for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include "config.h"
+#include <stdarg.h>
+#include <stdio.h>
+
+#define COBJMACROS
+
+#include "windef.h"
+#include "winbase.h"
+#include "winuser.h"
+#include "ole2.h"
+#include "netfw.h"
+
+#include "wine/debug.h"
+#include "wine/unicode.h"
+#include "hnetcfg_private.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg);
+
+typedef struct fw_service
+{
+    const INetFwServiceVtbl *vtbl;
+    LONG refs;
+} fw_service;
+
+static inline fw_service *impl_from_INetFwService( INetFwService *iface )
+{
+    return (fw_service *)((char *)iface - FIELD_OFFSET( fw_service, vtbl ));
+}
+
+static ULONG WINAPI fw_service_AddRef(
+    INetFwService *iface )
+{
+    fw_service *fw_service = impl_from_INetFwService( iface );
+    return InterlockedIncrement( &fw_service->refs );
+}
+
+static ULONG WINAPI fw_service_Release(
+    INetFwService *iface )
+{
+    fw_service *fw_service = impl_from_INetFwService( iface );
+    LONG refs = InterlockedDecrement( &fw_service->refs );
+    if (!refs)
+    {
+        TRACE("destroying %p\n", fw_service);
+        HeapFree( GetProcessHeap(), 0, fw_service );
+    }
+    return refs;
+}
+
+static HRESULT WINAPI fw_service_QueryInterface(
+    INetFwService *iface,
+    REFIID riid,
+    void **ppvObject )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
+
+    if ( IsEqualGUID( riid, &IID_INetFwService ) ||
+         IsEqualGUID( riid, &IID_IDispatch ) ||
+         IsEqualGUID( riid, &IID_IUnknown ) )
+    {
+        *ppvObject = iface;
+    }
+    else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
+        return E_NOINTERFACE;
+    }
+    INetFwService_AddRef( iface );
+    return S_OK;
+}
+
+static HRESULT WINAPI fw_service_GetTypeInfoCount(
+    INetFwService *iface,
+    UINT *pctinfo )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, pctinfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_GetTypeInfo(
+    INetFwService *iface,
+    UINT iTInfo,
+    LCID lcid,
+    ITypeInfo **ppTInfo )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %u %u %p\n", This, iTInfo, lcid, ppTInfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_GetIDsOfNames(
+    INetFwService *iface,
+    REFIID riid,
+    LPOLESTR *rgszNames,
+    UINT cNames,
+    LCID lcid,
+    DISPID *rgDispId )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %s %p %u %u %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_Invoke(
+    INetFwService *iface,
+    DISPID dispIdMember,
+    REFIID riid,
+    LCID lcid,
+    WORD wFlags,
+    DISPPARAMS *pDispParams,
+    VARIANT *pVarResult,
+    EXCEPINFO *pExcepInfo,
+    UINT *puArgErr )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %d %s %d %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
+          lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_Name(
+    INetFwService *iface,
+    BSTR *name )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, name);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_Type(
+    INetFwService *iface,
+    NET_FW_SERVICE_TYPE *type )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, type);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_Customized(
+        INetFwService *iface,
+        VARIANT_BOOL *customized )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, customized);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_IpVersion(
+    INetFwService *iface,
+    NET_FW_IP_VERSION *ipVersion )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, ipVersion);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_put_IpVersion(
+    INetFwService *iface,
+    NET_FW_IP_VERSION ipVersion )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %u\n", This, ipVersion);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_Scope(
+    INetFwService *iface,
+    NET_FW_SCOPE *scope )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, scope);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_put_Scope(
+    INetFwService *iface,
+    NET_FW_SCOPE scope )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %u\n", This, scope);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_RemoteAddresses(
+    INetFwService *iface,
+    BSTR *remoteAddrs )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, remoteAddrs);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_put_RemoteAddresses(
+    INetFwService *iface,
+    BSTR remoteAddrs )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %s\n", This, debugstr_w(remoteAddrs));
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_Enabled(
+    INetFwService *iface,
+    VARIANT_BOOL *enabled )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %p\n", This, enabled);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_put_Enabled(
+    INetFwService *iface,
+    VARIANT_BOOL enabled )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    FIXME("%p %d\n", This, enabled);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_service_get_GloballyOpenPorts(
+    INetFwService *iface,
+    INetFwOpenPorts **openPorts )
+{
+    fw_service *This = impl_from_INetFwService( iface );
+
+    TRACE("%p %p\n", This, openPorts);
+    return NetFwOpenPorts_create( NULL, (void **)openPorts );
+}
+
+static const struct INetFwServiceVtbl fw_service_vtbl =
+{
+    fw_service_QueryInterface,
+    fw_service_AddRef,
+    fw_service_Release,
+    fw_service_GetTypeInfoCount,
+    fw_service_GetTypeInfo,
+    fw_service_GetIDsOfNames,
+    fw_service_Invoke,
+    fw_service_get_Name,
+    fw_service_get_Type,
+    fw_service_get_Customized,
+    fw_service_get_IpVersion,
+    fw_service_put_IpVersion,
+    fw_service_get_Scope,
+    fw_service_put_Scope,
+    fw_service_get_RemoteAddresses,
+    fw_service_put_RemoteAddresses,
+    fw_service_get_Enabled,
+    fw_service_put_Enabled,
+    fw_service_get_GloballyOpenPorts
+};
+
+HRESULT NetFwService_create( IUnknown *pUnkOuter, LPVOID *ppObj )
+{
+    fw_service *fp;
+
+    TRACE("(%p,%p)\n", pUnkOuter, ppObj);
+
+    fp = HeapAlloc( GetProcessHeap(), 0, sizeof(*fp) );
+    if (!fp) return E_OUTOFMEMORY;
+
+    fp->vtbl = &fw_service_vtbl;
+    fp->refs = 1;
+
+    *ppObj = &fp->vtbl;
+
+    TRACE("returning iface %p\n", *ppObj);
+    return S_OK;
+}
+
+typedef struct fw_services
+{
+    const INetFwServicesVtbl *vtbl;
+    LONG refs;
+} fw_services;
+
+static inline fw_services *impl_from_INetFwServices( INetFwServices *iface )
+{
+    return (fw_services *)((char *)iface - FIELD_OFFSET( fw_services, vtbl ));
+}
+
+static ULONG WINAPI fw_services_AddRef(
+    INetFwServices *iface )
+{
+    fw_services *fw_services = impl_from_INetFwServices( iface );
+    return InterlockedIncrement( &fw_services->refs );
+}
+
+static ULONG WINAPI fw_services_Release(
+    INetFwServices *iface )
+{
+    fw_services *fw_services = impl_from_INetFwServices( iface );
+    LONG refs = InterlockedDecrement( &fw_services->refs );
+    if (!refs)
+    {
+        TRACE("destroying %p\n", fw_services);
+        HeapFree( GetProcessHeap(), 0, fw_services );
+    }
+    return refs;
+}
+
+static HRESULT WINAPI fw_services_QueryInterface(
+    INetFwServices *iface,
+    REFIID riid,
+    void **ppvObject )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
+
+    if ( IsEqualGUID( riid, &IID_INetFwServices ) ||
+         IsEqualGUID( riid, &IID_IDispatch ) ||
+         IsEqualGUID( riid, &IID_IUnknown ) )
+    {
+        *ppvObject = iface;
+    }
+    else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
+        return E_NOINTERFACE;
+    }
+    INetFwServices_AddRef( iface );
+    return S_OK;
+}
+
+static HRESULT WINAPI fw_services_GetTypeInfoCount(
+    INetFwServices *iface,
+    UINT *pctinfo )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p %p\n", This, pctinfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_services_GetTypeInfo(
+    INetFwServices *iface,
+    UINT iTInfo,
+    LCID lcid,
+    ITypeInfo **ppTInfo )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p %u %u %p\n", This, iTInfo, lcid, ppTInfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_services_GetIDsOfNames(
+    INetFwServices *iface,
+    REFIID riid,
+    LPOLESTR *rgszNames,
+    UINT cNames,
+    LCID lcid,
+    DISPID *rgDispId )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p %s %p %u %u %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_services_Invoke(
+    INetFwServices *iface,
+    DISPID dispIdMember,
+    REFIID riid,
+    LCID lcid,
+    WORD wFlags,
+    DISPPARAMS *pDispParams,
+    VARIANT *pVarResult,
+    EXCEPINFO *pExcepInfo,
+    UINT *puArgErr )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p %d %s %d %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
+          lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_services_get_Count(
+    INetFwServices *iface,
+    LONG *count )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p, %p\n", This, count);
+
+    *count = 0;
+    return S_OK;
+}
+
+static HRESULT WINAPI fw_services_Item(
+    INetFwServices *iface,
+    NET_FW_SERVICE_TYPE svcType,
+    INetFwService **service )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p, %u, %p\n", This, svcType, service);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_services_get__NewEnum(
+    INetFwServices *iface,
+    IUnknown **newEnum )
+{
+    fw_services *This = impl_from_INetFwServices( iface );
+
+    FIXME("%p, %p\n", This, newEnum);
+    return E_NOTIMPL;
+}
+
+static const struct INetFwServicesVtbl fw_services_vtbl =
+{
+    fw_services_QueryInterface,
+    fw_services_AddRef,
+    fw_services_Release,
+    fw_services_GetTypeInfoCount,
+    fw_services_GetTypeInfo,
+    fw_services_GetIDsOfNames,
+    fw_services_Invoke,
+    fw_services_get_Count,
+    fw_services_Item,
+    fw_services_get__NewEnum
+};
+
+HRESULT NetFwServices_create( IUnknown *pUnkOuter, LPVOID *ppObj )
+{
+    fw_services *fp;
+
+    TRACE("(%p,%p)\n", pUnkOuter, ppObj);
+
+    fp = HeapAlloc( GetProcessHeap(), 0, sizeof(*fp) );
+    if (!fp) return E_OUTOFMEMORY;
+
+    fp->vtbl = &fw_services_vtbl;
+    fp->refs = 1;
+
+    *ppObj = &fp->vtbl;
+
+    TRACE("returning iface %p\n", *ppObj);
+    return S_OK;
+}
-- 
1.6.3.3





More information about the wine-patches mailing list