Hans Leidekker : hnetcfg: Add a stub implementation of INetFwMgr.

Alexandre Julliard julliard at winehq.org
Mon Aug 3 11:16:14 CDT 2009


Module: wine
Branch: master
Commit: a3337935e9b81d17229a96987c1272772322b3d0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a3337935e9b81d17229a96987c1272772322b3d0

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Jul 30 11:13:45 2009 +0200

hnetcfg: Add a stub implementation of INetFwMgr.

---

 dlls/hnetcfg/Makefile.in       |    3 +-
 dlls/hnetcfg/hnetcfg_private.h |   19 +++
 dlls/hnetcfg/manager.c         |  240 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 261 insertions(+), 1 deletions(-)

diff --git a/dlls/hnetcfg/Makefile.in b/dlls/hnetcfg/Makefile.in
index b858b5a..adb4a70 100644
--- a/dlls/hnetcfg/Makefile.in
+++ b/dlls/hnetcfg/Makefile.in
@@ -6,7 +6,8 @@ MODULE    = hnetcfg.dll
 IMPORTS   = kernel32
 
 C_SRCS = \
-	hnetcfg.c
+	hnetcfg.c \
+	manager.c
 
 @MAKE_DLL_RULES@
 
diff --git a/dlls/hnetcfg/hnetcfg_private.h b/dlls/hnetcfg/hnetcfg_private.h
new file mode 100644
index 0000000..641b989
--- /dev/null
+++ b/dlls/hnetcfg/hnetcfg_private.h
@@ -0,0 +1,19 @@
+/*
+ * 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
+ */
+
+HRESULT NetFwMgr_create(IUnknown *, LPVOID *);
diff --git a/dlls/hnetcfg/manager.c b/dlls/hnetcfg/manager.c
new file mode 100644
index 0000000..b5504c0
--- /dev/null
+++ b/dlls/hnetcfg/manager.c
@@ -0,0 +1,240 @@
+/*
+ * 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 "initguid.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_manager
+{
+    const INetFwMgrVtbl *vtbl;
+    LONG refs;
+} fw_manager;
+
+static inline fw_manager *impl_from_INetFwMgr( INetFwMgr *iface )
+{
+    return (fw_manager *)((char *)iface - FIELD_OFFSET( fw_manager, vtbl ));
+}
+
+static ULONG WINAPI fw_manager_AddRef(
+    INetFwMgr *iface )
+{
+    fw_manager *fw_manager = impl_from_INetFwMgr( iface );
+    return InterlockedIncrement( &fw_manager->refs );
+}
+
+static ULONG WINAPI fw_manager_Release(
+    INetFwMgr *iface )
+{
+    fw_manager *fw_manager = impl_from_INetFwMgr( iface );
+    LONG refs = InterlockedDecrement( &fw_manager->refs );
+    if (!refs)
+    {
+        TRACE("destroying %p\n", fw_manager);
+        HeapFree( GetProcessHeap(), 0, fw_manager );
+    }
+    return refs;
+}
+
+static HRESULT WINAPI fw_manager_QueryInterface(
+    INetFwMgr *iface,
+    REFIID riid,
+    void **ppvObject )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
+
+    if ( IsEqualGUID( riid, &IID_INetFwMgr ) ||
+         IsEqualGUID( riid, &IID_IDispatch ) ||
+         IsEqualGUID( riid, &IID_IUnknown ) )
+    {
+        *ppvObject = iface;
+    }
+    else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
+        return E_NOINTERFACE;
+    }
+    INetFwMgr_AddRef( iface );
+    return S_OK;
+}
+
+static HRESULT WINAPI fw_manager_GetTypeInfoCount(
+    INetFwMgr *iface,
+    UINT *pctinfo )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p %p\n", This, pctinfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_GetTypeInfo(
+    INetFwMgr *iface,
+    UINT iTInfo,
+    LCID lcid,
+    ITypeInfo **ppTInfo )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p %u %u %p\n", This, iTInfo, lcid, ppTInfo);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_GetIDsOfNames(
+    INetFwMgr *iface,
+    REFIID riid,
+    LPOLESTR *rgszNames,
+    UINT cNames,
+    LCID lcid,
+    DISPID *rgDispId )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p %s %p %u %u %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_Invoke(
+    INetFwMgr *iface,
+    DISPID dispIdMember,
+    REFIID riid,
+    LCID lcid,
+    WORD wFlags,
+    DISPPARAMS *pDispParams,
+    VARIANT *pVarResult,
+    EXCEPINFO *pExcepInfo,
+    UINT *puArgErr )
+{
+    fw_manager *This = impl_from_INetFwMgr( 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_manager_get_LocalPolicy(
+    INetFwMgr *iface,
+    INetFwPolicy **localPolicy )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p, %p\n", This, localPolicy);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_get_CurrentProfileType(
+    INetFwMgr *iface,
+    NET_FW_PROFILE_TYPE *profileType )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p, %p\n", This, profileType);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_RestoreDefaults(
+    INetFwMgr *iface )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p\n", This);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_IsPortAllowed(
+    INetFwMgr *iface,
+    BSTR imageFileName,
+    NET_FW_IP_VERSION ipVersion,
+    LONG portNumber,
+    BSTR localAddress,
+    NET_FW_IP_PROTOCOL ipProtocol,
+    VARIANT *allowed,
+    VARIANT *restricted )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p, %s, %u, %d, %s, %u, %p, %p\n", This, debugstr_w(imageFileName),
+          ipVersion, portNumber, debugstr_w(localAddress), ipProtocol, allowed, restricted);
+    return E_NOTIMPL;
+}
+
+static HRESULT WINAPI fw_manager_IsIcmpTypeAllowed(
+    INetFwMgr *iface,
+    NET_FW_IP_VERSION ipVersion,
+    BSTR localAddress,
+    BYTE type,
+    VARIANT *allowed,
+    VARIANT *restricted )
+{
+    fw_manager *This = impl_from_INetFwMgr( iface );
+
+    FIXME("%p, %u, %s, %u, %p, %p\n", This, ipVersion, debugstr_w(localAddress),
+          type, allowed, restricted);
+    return E_NOTIMPL;
+}
+
+static const struct INetFwMgrVtbl fw_manager_vtbl =
+{
+    fw_manager_QueryInterface,
+    fw_manager_AddRef,
+    fw_manager_Release,
+    fw_manager_GetTypeInfoCount,
+    fw_manager_GetTypeInfo,
+    fw_manager_GetIDsOfNames,
+    fw_manager_Invoke,
+    fw_manager_get_LocalPolicy,
+    fw_manager_get_CurrentProfileType,
+    fw_manager_RestoreDefaults,
+    fw_manager_IsPortAllowed,
+    fw_manager_IsIcmpTypeAllowed
+};
+
+HRESULT NetFwMgr_create( IUnknown *pUnkOuter, LPVOID *ppObj )
+{
+    fw_manager *fm;
+
+    TRACE("(%p,%p)\n", pUnkOuter, ppObj);
+
+    fm = HeapAlloc( GetProcessHeap(), 0, sizeof(*fm) );
+    if (!fm) return E_OUTOFMEMORY;
+
+    fm->vtbl = &fw_manager_vtbl;
+    fm->refs = 1;
+
+    *ppObj = &fm->vtbl;
+
+    TRACE("returning iface %p\n", *ppObj);
+    return S_OK;
+}




More information about the wine-cvs mailing list