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
29 #include "wine/debug.h"
30 #include "hnetcfg_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg
);
34 static HINSTANCE instance
;
36 typedef HRESULT (*fnCreateInstance
)( IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
40 IClassFactory IClassFactory_iface
;
41 fnCreateInstance pfnCreateInstance
;
44 static inline hnetcfg_cf
*impl_from_IClassFactory( IClassFactory
*iface
)
46 return CONTAINING_RECORD(iface
, hnetcfg_cf
, IClassFactory_iface
);
49 static HRESULT WINAPI
hnetcfg_cf_QueryInterface( IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
51 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
52 IsEqualGUID(riid
, &IID_IClassFactory
))
54 IClassFactory_AddRef( iface
);
58 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
62 static ULONG WINAPI
hnetcfg_cf_AddRef( IClassFactory
*iface
)
67 static ULONG WINAPI
hnetcfg_cf_Release( IClassFactory
*iface
)
72 static HRESULT WINAPI
hnetcfg_cf_CreateInstance( IClassFactory
*iface
, LPUNKNOWN pOuter
,
73 REFIID riid
, LPVOID
*ppobj
)
75 hnetcfg_cf
*This
= impl_from_IClassFactory( iface
);
79 TRACE("%p %s %p\n", pOuter
, debugstr_guid(riid
), ppobj
);
84 return CLASS_E_NOAGGREGATION
;
86 r
= This
->pfnCreateInstance( pOuter
, (LPVOID
*)&punk
);
90 r
= IUnknown_QueryInterface( punk
, riid
, ppobj
);
94 IUnknown_Release( punk
);
98 static HRESULT WINAPI
hnetcfg_cf_LockServer( IClassFactory
*iface
, BOOL dolock
)
100 FIXME("(%p)->(%d)\n", iface
, dolock
);
104 static const struct IClassFactoryVtbl hnetcfg_cf_vtbl
=
106 hnetcfg_cf_QueryInterface
,
109 hnetcfg_cf_CreateInstance
,
110 hnetcfg_cf_LockServer
113 static hnetcfg_cf fw_manager_cf
= { { &hnetcfg_cf_vtbl
}, NetFwMgr_create
};
114 static hnetcfg_cf fw_app_cf
= { { &hnetcfg_cf_vtbl
}, NetFwAuthorizedApplication_create
};
116 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
118 TRACE("(0x%p, %d, %p)\n",hInstDLL
,fdwReason
,lpvReserved
);
121 case DLL_WINE_PREATTACH
:
123 case DLL_PROCESS_ATTACH
:
125 DisableThreadLibraryCalls(hInstDLL
);
131 HRESULT WINAPI
DllGetClassObject( REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
133 IClassFactory
*cf
= NULL
;
135 TRACE("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(iid
), ppv
);
137 if (IsEqualGUID( rclsid
, &CLSID_NetFwMgr
))
139 cf
= &fw_manager_cf
.IClassFactory_iface
;
141 else if (IsEqualGUID( rclsid
, &CLSID_NetFwAuthorizedApplication
))
143 cf
= &fw_app_cf
.IClassFactory_iface
;
146 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
147 return IClassFactory_QueryInterface( cf
, iid
, ppv
);
150 HRESULT WINAPI
DllCanUnloadNow( void )
155 /***********************************************************************
156 * DllRegisterServer (HNETCFG.@)
158 HRESULT WINAPI
DllRegisterServer(void)
160 return __wine_register_resources( instance
);
163 /***********************************************************************
164 * DllUnregisterServer (HNETCFG.@)
166 HRESULT WINAPI
DllUnregisterServer(void)
168 return __wine_unregister_resources( instance
);