2 * Implementation of class factory for IE Web Browser
4 * Copyright 2001 John R. Sheets (for CodeWeavers)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw
);
27 /**********************************************************************
28 * Implement the WebBrowser class factory
30 * (Based on implementation in ddraw/main.c)
33 #define FACTORY(x) ((IClassFactory*) &(x)->lpClassFactoryVtbl)
38 const IClassFactoryVtbl
*lpClassFactoryVtbl
;
39 HRESULT (*cf
)(LPUNKNOWN
, REFIID
, LPVOID
*);
44 /**********************************************************************
45 * WBCF_QueryInterface (IUnknown)
47 static HRESULT WINAPI
WBCF_QueryInterface(LPCLASSFACTORY iface
,
48 REFIID riid
, LPVOID
*ppobj
)
50 TRACE("(%s %p)\n", debugstr_guid(riid
), ppobj
);
55 if(IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IClassFactory
, riid
)) {
57 IClassFactory_AddRef(iface
);
61 WARN("Not supported interface %s\n", debugstr_guid(riid
));
67 /************************************************************************
68 * WBCF_AddRef (IUnknown)
70 static ULONG WINAPI
WBCF_AddRef(LPCLASSFACTORY iface
)
74 return 2; /* non-heap based object */
77 /************************************************************************
78 * WBCF_Release (IUnknown)
80 static ULONG WINAPI
WBCF_Release(LPCLASSFACTORY iface
)
82 SHDOCVW_UnlockModule();
84 return 1; /* non-heap based object */
87 /************************************************************************
88 * WBCF_CreateInstance (IClassFactory)
90 static HRESULT WINAPI
WBCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
,
91 REFIID riid
, LPVOID
*ppobj
)
93 IClassFactoryImpl
*This
= (IClassFactoryImpl
*) iface
;
94 return This
->cf(pOuter
, riid
, ppobj
);
97 /************************************************************************
98 * WBCF_LockServer (IClassFactory)
100 static HRESULT WINAPI
WBCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
102 TRACE("(%d)\n", dolock
);
105 SHDOCVW_LockModule();
107 SHDOCVW_UnlockModule();
112 static const IClassFactoryVtbl WBCF_Vtbl
=
121 /*************************************************************************
122 * DllGetClassObject (SHDOCVW.@)
124 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, void **ppv
)
126 static IClassFactoryImpl WB1ClassFactory
= {&WBCF_Vtbl
, WebBrowserV1_Create
};
127 static IClassFactoryImpl WB2ClassFactory
= {&WBCF_Vtbl
, WebBrowserV2_Create
};
128 static IClassFactoryImpl CUHClassFactory
= {&WBCF_Vtbl
, CUrlHistory_Create
};
132 if(IsEqualGUID(&CLSID_WebBrowser
, rclsid
))
133 return IClassFactory_QueryInterface(FACTORY(&WB2ClassFactory
), riid
, ppv
);
135 if(IsEqualGUID(&CLSID_WebBrowser_V1
, rclsid
))
136 return IClassFactory_QueryInterface(FACTORY(&WB1ClassFactory
), riid
, ppv
);
138 if(IsEqualGUID(&CLSID_CUrlHistory
, rclsid
))
139 return IClassFactory_QueryInterface(FACTORY(&CUHClassFactory
), riid
, ppv
);
141 /* As a last resort, figure if the CLSID belongs to a 'Shell Instance Object' */
142 return SHDOCVW_GetShellInstanceObjectClassObject(rclsid
, riid
, ppv
);
145 HRESULT
register_class_object(BOOL do_reg
)
150 static IClassFactoryImpl IEClassFactory
= {&WBCF_Vtbl
, InternetExplorer_Create
};
153 hres
= CoRegisterClassObject(&CLSID_InternetExplorer
, (IUnknown
*)FACTORY(&IEClassFactory
),
154 CLSCTX_SERVER
, REGCLS_MULTIPLEUSE
|REGCLS_SUSPENDED
, &cookie
);
156 ERR("failed to register object %08x\n", hres
);
160 hres
= CoResumeClassObjects();
164 ERR("failed to resume object %08x\n", hres
);
167 return CoRevokeClassObject(cookie
);