2 * Copyright (C) 2007 Jeff Latimer
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
30 #include "wine/debug.h"
31 #include "hnetcfg_private.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg
);
35 static HINSTANCE instance
;
37 typedef HRESULT (*fnCreateInstance
)( IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
41 IClassFactory IClassFactory_iface
;
42 fnCreateInstance pfnCreateInstance
;
45 static inline hnetcfg_cf
*impl_from_IClassFactory( IClassFactory
*iface
)
47 return CONTAINING_RECORD(iface
, hnetcfg_cf
, IClassFactory_iface
);
50 static HRESULT WINAPI
hnetcfg_cf_QueryInterface( IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
52 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
53 IsEqualGUID(riid
, &IID_IClassFactory
))
55 IClassFactory_AddRef( iface
);
59 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
63 static ULONG WINAPI
hnetcfg_cf_AddRef( IClassFactory
*iface
)
68 static ULONG WINAPI
hnetcfg_cf_Release( IClassFactory
*iface
)
73 static HRESULT WINAPI
hnetcfg_cf_CreateInstance( IClassFactory
*iface
, LPUNKNOWN pOuter
,
74 REFIID riid
, LPVOID
*ppobj
)
76 hnetcfg_cf
*This
= impl_from_IClassFactory( iface
);
80 TRACE("%p %s %p\n", pOuter
, debugstr_guid(riid
), ppobj
);
85 return CLASS_E_NOAGGREGATION
;
87 r
= This
->pfnCreateInstance( pOuter
, (LPVOID
*)&punk
);
91 r
= IUnknown_QueryInterface( punk
, riid
, ppobj
);
95 IUnknown_Release( punk
);
99 static HRESULT WINAPI
hnetcfg_cf_LockServer( IClassFactory
*iface
, BOOL dolock
)
101 FIXME("(%p)->(%d)\n", iface
, dolock
);
105 static const struct IClassFactoryVtbl hnetcfg_cf_vtbl
=
107 hnetcfg_cf_QueryInterface
,
110 hnetcfg_cf_CreateInstance
,
111 hnetcfg_cf_LockServer
114 static hnetcfg_cf fw_manager_cf
= { { &hnetcfg_cf_vtbl
}, NetFwMgr_create
};
115 static hnetcfg_cf fw_app_cf
= { { &hnetcfg_cf_vtbl
}, NetFwAuthorizedApplication_create
};
116 static hnetcfg_cf fw_openport_cf
= { { &hnetcfg_cf_vtbl
}, NetFwOpenPort_create
};
117 static hnetcfg_cf fw_policy2_cf
= { { &hnetcfg_cf_vtbl
}, NetFwPolicy2_create
};
118 static hnetcfg_cf upnpnat_cf
= { { &hnetcfg_cf_vtbl
}, IUPnPNAT_create
};
121 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID reserved
)
123 TRACE("(0x%p, %d, %p)\n", hInstDLL
, fdwReason
, reserved
);
126 case DLL_WINE_PREATTACH
:
128 case DLL_PROCESS_ATTACH
:
130 DisableThreadLibraryCalls(hInstDLL
);
132 case DLL_PROCESS_DETACH
:
140 HRESULT WINAPI
DllGetClassObject( REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
142 IClassFactory
*cf
= NULL
;
144 TRACE("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(iid
), ppv
);
146 if (IsEqualGUID( rclsid
, &CLSID_NetFwMgr
))
148 cf
= &fw_manager_cf
.IClassFactory_iface
;
150 else if (IsEqualGUID( rclsid
, &CLSID_NetFwAuthorizedApplication
))
152 cf
= &fw_app_cf
.IClassFactory_iface
;
154 else if (IsEqualGUID( rclsid
, &CLSID_NetFwOpenPort
))
156 cf
= &fw_openport_cf
.IClassFactory_iface
;
158 else if (IsEqualGUID( rclsid
, &CLSID_NetFwPolicy2
))
160 cf
= &fw_policy2_cf
.IClassFactory_iface
;
162 else if (IsEqualGUID( rclsid
, &CLSID_UPnPNAT
))
164 cf
= &upnpnat_cf
.IClassFactory_iface
;
167 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
168 return IClassFactory_QueryInterface( cf
, iid
, ppv
);
171 HRESULT WINAPI
DllCanUnloadNow( void )
176 /***********************************************************************
177 * DllRegisterServer (HNETCFG.@)
179 HRESULT WINAPI
DllRegisterServer(void)
181 return __wine_register_resources( instance
);
184 /***********************************************************************
185 * DllUnregisterServer (HNETCFG.@)
187 HRESULT WINAPI
DllUnregisterServer(void)
189 return __wine_unregister_resources( instance
);