ReactOS 0.4.15-dev-7788-g1ad9096
hnetcfg.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2007 Jeff Latimer
3 *
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.
8 *
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.
13 *
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
17 */
18
19#include <stdarg.h>
20
21#define COBJMACROS
22
23#include "windef.h"
24#include "winbase.h"
25#include "objbase.h"
26#include "rpcproxy.h"
27#include "netfw.h"
28#include "natupnp.h"
29
30#include "wine/debug.h"
31#include "hnetcfg_private.h"
32
34
36
37typedef HRESULT (*fnCreateInstance)( IUnknown *pUnkOuter, LPVOID *ppObj );
38
39typedef struct
40{
44
46{
47 return CONTAINING_RECORD(iface, hnetcfg_cf, IClassFactory_iface);
48}
49
51{
54 {
55 IClassFactory_AddRef( iface );
56 *ppobj = iface;
57 return S_OK;
58 }
59 FIXME("interface %s not implemented\n", debugstr_guid(riid));
60 return E_NOINTERFACE;
61}
62
64{
65 return 2;
66}
67
69{
70 return 1;
71}
72
74 REFIID riid, LPVOID *ppobj )
75{
77 HRESULT r;
78 IUnknown *punk;
79
80 TRACE("%p %s %p\n", pOuter, debugstr_guid(riid), ppobj);
81
82 *ppobj = NULL;
83
84 if (pOuter)
86
87 r = This->pfnCreateInstance( pOuter, (LPVOID *)&punk );
88 if (FAILED(r))
89 return r;
90
91 r = IUnknown_QueryInterface( punk, riid, ppobj );
92 if (FAILED(r))
93 return r;
94
95 IUnknown_Release( punk );
96 return r;
97}
98
100{
101 FIXME("(%p)->(%d)\n", iface, dolock);
102 return S_OK;
103}
104
105static const struct IClassFactoryVtbl hnetcfg_cf_vtbl =
106{
112};
113
119
120
122{
123 TRACE("(0x%p, %d, %p)\n", hInstDLL, fdwReason, reserved);
124
125 switch(fdwReason) {
126 case DLL_WINE_PREATTACH:
127 return FALSE;
129 instance = hInstDLL;
131 break;
133 if (reserved) break;
135 break;
136 }
137 return TRUE;
138}
139
141{
143
144 TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
145
146 if (IsEqualGUID( rclsid, &CLSID_NetFwMgr ))
147 {
149 }
150 else if (IsEqualGUID( rclsid, &CLSID_NetFwAuthorizedApplication ))
151 {
153 }
154 else if (IsEqualGUID( rclsid, &CLSID_NetFwOpenPort ))
155 {
157 }
158 else if (IsEqualGUID( rclsid, &CLSID_NetFwPolicy2 ))
159 {
161 }
162 else if (IsEqualGUID( rclsid, &CLSID_UPnPNAT ))
163 {
165 }
166
167 if (!cf) return CLASS_E_CLASSNOTAVAILABLE;
168 return IClassFactory_QueryInterface( cf, iid, ppv );
169}
170
172{
173 return S_FALSE;
174}
175
176/***********************************************************************
177 * DllRegisterServer (HNETCFG.@)
178 */
180{
182}
183
184/***********************************************************************
185 * DllUnregisterServer (HNETCFG.@)
186 */
188{
190}
HRESULT NetFwAuthorizedApplication_create(IUnknown *pUnkOuter, LPVOID *ppObj)
Definition: apps.c:432
void release_typelib(void)
Definition: apps.c:159
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
const GUID IID_IUnknown
const GUID IID_IClassFactory
#define FIXME(fmt,...)
Definition: debug.h:111
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
r reserved
Definition: btrfs.c:3006
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID reserved)
Definition: hnetcfg.c:121
static hnetcfg_cf fw_policy2_cf
Definition: hnetcfg.c:117
static hnetcfg_cf fw_app_cf
Definition: hnetcfg.c:115
HRESULT WINAPI DllRegisterServer(void)
Definition: hnetcfg.c:179
static hnetcfg_cf fw_openport_cf
Definition: hnetcfg.c:116
static ULONG WINAPI hnetcfg_cf_AddRef(IClassFactory *iface)
Definition: hnetcfg.c:63
HRESULT(* fnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj)
Definition: hnetcfg.c:37
static HRESULT WINAPI hnetcfg_cf_LockServer(IClassFactory *iface, BOOL dolock)
Definition: hnetcfg.c:99
static HINSTANCE instance
Definition: hnetcfg.c:35
HRESULT WINAPI DllUnregisterServer(void)
Definition: hnetcfg.c:187
static ULONG WINAPI hnetcfg_cf_Release(IClassFactory *iface)
Definition: hnetcfg.c:68
static HRESULT WINAPI hnetcfg_cf_CreateInstance(IClassFactory *iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
Definition: hnetcfg.c:73
static hnetcfg_cf fw_manager_cf
Definition: hnetcfg.c:114
HRESULT WINAPI DllCanUnloadNow(void)
Definition: hnetcfg.c:171
static HRESULT WINAPI hnetcfg_cf_QueryInterface(IClassFactory *iface, REFIID riid, LPVOID *ppobj)
Definition: hnetcfg.c:50
static hnetcfg_cf * impl_from_IClassFactory(IClassFactory *iface)
Definition: hnetcfg.c:45
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
Definition: hnetcfg.c:140
static const struct IClassFactoryVtbl hnetcfg_cf_vtbl
Definition: hnetcfg.c:105
static hnetcfg_cf upnpnat_cf
Definition: hnetcfg.c:118
HRESULT NetFwPolicy2_create(IUnknown *, void **) DECLSPEC_HIDDEN
Definition: policy.c:769
HRESULT NetFwMgr_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN
Definition: manager.c:241
HRESULT IUPnPNAT_create(IUnknown *, void **) DECLSPEC_HIDDEN
Definition: port.c:759
HRESULT NetFwOpenPort_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN
Definition: port.c:360
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
#define debugstr_guid
Definition: kernel32.h:35
static LPUNKNOWN
Definition: ndr_ole.c:49
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
HRESULT __wine_unregister_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:110
HRESULT __wine_register_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:98
#define TRACE(s)
Definition: solgame.cpp:4
fnCreateInstance pfnCreateInstance
Definition: hnetcfg.c:42
IClassFactory IClassFactory_iface
Definition: hnetcfg.c:41
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
uint32_t ULONG
Definition: typedefs.h:59
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357
#define E_NOINTERFACE
Definition: winerror.h:2364
#define CLASS_E_NOAGGREGATION
Definition: winerror.h:2662
#define CLASS_E_CLASSNOTAVAILABLE
Definition: winerror.h:2663