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 typedef HRESULT (*fnCreateInstance
)( IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
39 IClassFactory IClassFactory_iface
;
40 fnCreateInstance pfnCreateInstance
;
43 static inline hnetcfg_cf
*impl_from_IClassFactory( IClassFactory
*iface
)
45 return CONTAINING_RECORD(iface
, hnetcfg_cf
, IClassFactory_iface
);
48 static HRESULT WINAPI
hnetcfg_cf_QueryInterface( IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
50 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
51 IsEqualGUID(riid
, &IID_IClassFactory
))
53 IClassFactory_AddRef( iface
);
57 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
61 static ULONG WINAPI
hnetcfg_cf_AddRef( IClassFactory
*iface
)
66 static ULONG WINAPI
hnetcfg_cf_Release( IClassFactory
*iface
)
71 static HRESULT WINAPI
hnetcfg_cf_CreateInstance( IClassFactory
*iface
, LPUNKNOWN pOuter
,
72 REFIID riid
, LPVOID
*ppobj
)
74 hnetcfg_cf
*This
= impl_from_IClassFactory( iface
);
78 TRACE("%p %s %p\n", pOuter
, debugstr_guid(riid
), ppobj
);
83 return CLASS_E_NOAGGREGATION
;
85 r
= This
->pfnCreateInstance( pOuter
, (LPVOID
*)&punk
);
89 r
= IUnknown_QueryInterface( punk
, riid
, ppobj
);
93 IUnknown_Release( punk
);
97 static HRESULT WINAPI
hnetcfg_cf_LockServer( IClassFactory
*iface
, BOOL dolock
)
99 FIXME("(%p)->(%d)\n", iface
, dolock
);
103 static const struct IClassFactoryVtbl hnetcfg_cf_vtbl
=
105 hnetcfg_cf_QueryInterface
,
108 hnetcfg_cf_CreateInstance
,
109 hnetcfg_cf_LockServer
112 static hnetcfg_cf fw_manager_cf
= { { &hnetcfg_cf_vtbl
}, NetFwMgr_create
};
113 static hnetcfg_cf fw_app_cf
= { { &hnetcfg_cf_vtbl
}, NetFwAuthorizedApplication_create
};
114 static hnetcfg_cf fw_openport_cf
= { { &hnetcfg_cf_vtbl
}, NetFwOpenPort_create
};
115 static hnetcfg_cf fw_policy2_cf
= { { &hnetcfg_cf_vtbl
}, NetFwPolicy2_create
};
116 static hnetcfg_cf upnpnat_cf
= { { &hnetcfg_cf_vtbl
}, IUPnPNAT_create
};
119 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID reserved
)
121 TRACE("(0x%p, %d, %p)\n", hInstDLL
, fdwReason
, reserved
);
124 case DLL_PROCESS_ATTACH
:
125 DisableThreadLibraryCalls(hInstDLL
);
127 case DLL_PROCESS_DETACH
:
135 HRESULT WINAPI
DllGetClassObject( REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
137 IClassFactory
*cf
= NULL
;
139 TRACE("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(iid
), ppv
);
141 if (IsEqualGUID( rclsid
, &CLSID_NetFwMgr
))
143 cf
= &fw_manager_cf
.IClassFactory_iface
;
145 else if (IsEqualGUID( rclsid
, &CLSID_NetFwAuthorizedApplication
))
147 cf
= &fw_app_cf
.IClassFactory_iface
;
149 else if (IsEqualGUID( rclsid
, &CLSID_NetFwOpenPort
))
151 cf
= &fw_openport_cf
.IClassFactory_iface
;
153 else if (IsEqualGUID( rclsid
, &CLSID_NetFwPolicy2
))
155 cf
= &fw_policy2_cf
.IClassFactory_iface
;
157 else if (IsEqualGUID( rclsid
, &CLSID_UPnPNAT
))
159 cf
= &upnpnat_cf
.IClassFactory_iface
;
162 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
163 return IClassFactory_QueryInterface( cf
, iid
, ppv
);