4 * Copyright 2002 Lionel Ulmer
5 * Copyright 2003 Mike McCormack
6 * Copyright 2005 Jacek Caban
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
38 #include "wine/unicode.h"
39 #include "wine/debug.h"
42 #include "mshtml_private.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
49 static HINSTANCE shdoclc
= NULL
;
51 static void thread_detach(void)
53 thread_data_t
*thread_data
;
55 thread_data
= get_thread_data(FALSE
);
59 if(thread_data
->thread_hwnd
)
60 DestroyWindow(thread_data
->thread_hwnd
);
62 heap_free(thread_data
);
65 static void process_detach(void)
76 HINSTANCE
get_shdoclc(void)
78 static const WCHAR wszShdoclc
[] =
79 {'s','h','d','o','c','l','c','.','d','l','l',0};
84 return shdoclc
= LoadLibraryExW(wszShdoclc
, NULL
, LOAD_LIBRARY_AS_DATAFILE
);
87 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
90 case DLL_PROCESS_ATTACH
:
93 case DLL_PROCESS_DETACH
:
96 case DLL_THREAD_DETACH
:
103 /***********************************************************
104 * ClassFactory implementation
106 typedef HRESULT (*CreateInstanceFunc
)(IUnknown
*,REFIID
,void**);
108 const IClassFactoryVtbl
*lpVtbl
;
110 CreateInstanceFunc fnCreateInstance
;
113 static HRESULT WINAPI
ClassFactory_QueryInterface(IClassFactory
*iface
, REFGUID riid
, void **ppvObject
)
115 if(IsEqualGUID(&IID_IClassFactory
, riid
) || IsEqualGUID(&IID_IUnknown
, riid
)) {
116 IClassFactory_AddRef(iface
);
121 WARN("not supported iid %s\n", debugstr_guid(riid
));
123 return E_NOINTERFACE
;
126 static ULONG WINAPI
ClassFactory_AddRef(IClassFactory
*iface
)
128 ClassFactory
*This
= (ClassFactory
*)iface
;
129 ULONG ref
= InterlockedIncrement(&This
->ref
);
130 TRACE("(%p) ref = %u\n", This
, ref
);
134 static ULONG WINAPI
ClassFactory_Release(IClassFactory
*iface
)
136 ClassFactory
*This
= (ClassFactory
*)iface
;
137 ULONG ref
= InterlockedDecrement(&This
->ref
);
139 TRACE("(%p) ref = %u\n", This
, ref
);
148 static HRESULT WINAPI
ClassFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*pUnkOuter
,
149 REFIID riid
, void **ppvObject
)
151 ClassFactory
*This
= (ClassFactory
*)iface
;
152 return This
->fnCreateInstance(pUnkOuter
, riid
, ppvObject
);
155 static HRESULT WINAPI
ClassFactory_LockServer(IClassFactory
*iface
, BOOL dolock
)
157 TRACE("(%p)->(%x)\n", iface
, dolock
);
159 /* We never unload the DLL. See DllCanUnloadNow(). */
163 static const IClassFactoryVtbl HTMLClassFactoryVtbl
= {
164 ClassFactory_QueryInterface
,
166 ClassFactory_Release
,
167 ClassFactory_CreateInstance
,
168 ClassFactory_LockServer
171 static HRESULT
ClassFactory_Create(REFIID riid
, void **ppv
, CreateInstanceFunc fnCreateInstance
)
173 ClassFactory
*ret
= heap_alloc(sizeof(ClassFactory
));
176 ret
->lpVtbl
= &HTMLClassFactoryVtbl
;
178 ret
->fnCreateInstance
= fnCreateInstance
;
180 hres
= IClassFactory_QueryInterface((IClassFactory
*)ret
, riid
, ppv
);
188 /******************************************************************
189 * DllGetClassObject (MSHTML.@)
191 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
193 if(IsEqualGUID(&CLSID_HTMLDocument
, rclsid
)) {
194 TRACE("(CLSID_HTMLDocument %s %p)\n", debugstr_guid(riid
), ppv
);
195 return ClassFactory_Create(riid
, ppv
, HTMLDocument_Create
);
196 }else if(IsEqualGUID(&CLSID_AboutProtocol
, rclsid
)) {
197 TRACE("(CLSID_AboutProtocol %s %p)\n", debugstr_guid(riid
), ppv
);
198 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
199 }else if(IsEqualGUID(&CLSID_JSProtocol
, rclsid
)) {
200 TRACE("(CLSID_JSProtocol %s %p)\n", debugstr_guid(riid
), ppv
);
201 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
202 }else if(IsEqualGUID(&CLSID_MailtoProtocol
, rclsid
)) {
203 TRACE("(CLSID_MailtoProtocol %s %p)\n", debugstr_guid(riid
), ppv
);
204 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
205 }else if(IsEqualGUID(&CLSID_ResProtocol
, rclsid
)) {
206 TRACE("(CLSID_ResProtocol %s %p)\n", debugstr_guid(riid
), ppv
);
207 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
208 }else if(IsEqualGUID(&CLSID_SysimageProtocol
, rclsid
)) {
209 TRACE("(CLSID_SysimageProtocol %s %p)\n", debugstr_guid(riid
), ppv
);
210 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
211 }else if(IsEqualGUID(&CLSID_HTMLLoadOptions
, rclsid
)) {
212 TRACE("(CLSID_HTMLLoadOptions %s %p)\n", debugstr_guid(riid
), ppv
);
213 return ClassFactory_Create(riid
, ppv
, HTMLLoadOptions_Create
);
216 FIXME("Unknown class %s\n", debugstr_guid(rclsid
));
217 return CLASS_E_CLASSNOTAVAILABLE
;
220 /******************************************************************
221 * DllCanUnloadNow (MSHTML.@)
223 HRESULT WINAPI
DllCanUnloadNow(void)
226 /* The cost of keeping this DLL in memory is small. */
230 /***********************************************************************
231 * RunHTMLApplication (MSHTML.@)
233 * Appears to have the same prototype as WinMain.
235 HRESULT WINAPI
RunHTMLApplication( HINSTANCE hinst
, HINSTANCE hPrevInst
,
236 LPSTR szCmdLine
, INT nCmdShow
)
238 FIXME("%p %p %s %d\n", hinst
, hPrevInst
, debugstr_a(szCmdLine
), nCmdShow
);
242 /***********************************************************************
243 * RNIGetCompatibleVersion (MSHTML.@)
245 DWORD WINAPI
RNIGetCompatibleVersion(void)
251 /***********************************************************************
252 * DllInstall (MSHTML.@)
254 HRESULT WINAPI
DllInstall(BOOL bInstall
, LPCWSTR cmdline
)
256 FIXME("stub %d %s: returning S_OK\n", bInstall
, debugstr_w(cmdline
));
260 /***********************************************************************
261 * ShowHTMLDialog (MSHTML.@)
263 HRESULT WINAPI
ShowHTMLDialog(HWND hwndParent
, IMoniker
*pMk
, VARIANT
*pvarArgIn
,
264 WCHAR
*pchOptions
, VARIANT
*pvarArgOut
)
266 FIXME("(%p %p %p %s %p)\n", hwndParent
, pMk
, pvarArgIn
, debugstr_w(pchOptions
), pvarArgOut
);
270 DEFINE_GUID(CLSID_CBackgroundPropertyPage
, 0x3050F232, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
271 DEFINE_GUID(CLSID_CCDAnchorPropertyPage
, 0x3050F1FC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
272 DEFINE_GUID(CLSID_CCDGenericPropertyPage
, 0x3050F17F, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
273 DEFINE_GUID(CLSID_CDwnBindInfo
, 0x3050F3C2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
274 DEFINE_GUID(CLSID_CHiFiUses
, 0x5AAF51B3, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
275 DEFINE_GUID(CLSID_CHtmlComponentConstructor
, 0x3050F4F8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
276 DEFINE_GUID(CLSID_CInlineStylePropertyPage
, 0x3050F296, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
277 DEFINE_GUID(CLSID_CPeerHandler
, 0x5AAF51B2, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
278 DEFINE_GUID(CLSID_CRecalcEngine
, 0x3050F499, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
279 DEFINE_GUID(CLSID_CSvrOMUses
, 0x3050F4F0, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
280 DEFINE_GUID(CLSID_CrSource
, 0x65014010, 0x9F62, 0x11D1, 0xA6,0x51, 0x00,0x60,0x08,0x11,0xD5,0xCE);
281 DEFINE_GUID(CLSID_ExternalFrameworkSite
, 0x3050F163, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
282 DEFINE_GUID(CLSID_HTADocument
, 0x3050F5C8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
283 DEFINE_GUID(CLSID_HTMLPluginDocument
, 0x25336921, 0x03F9, 0x11CF, 0x8F,0xD0, 0x00,0xAA,0x00,0x68,0x6F,0x13);
284 DEFINE_GUID(CLSID_HTMLPopup
, 0x3050F667, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
285 DEFINE_GUID(CLSID_HTMLPopupDoc
, 0x3050F67D, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
286 DEFINE_GUID(CLSID_HTMLServerDoc
, 0x3050F4E7, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
287 DEFINE_GUID(CLSID_HTMLWindowProxy
, 0x3050F391, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
288 DEFINE_GUID(CLSID_IImageDecodeFilter
, 0x607FD4E8, 0x0A03, 0x11D1, 0xAB,0x1D, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
289 DEFINE_GUID(CLSID_IImgCtx
, 0x3050F3D6, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
290 DEFINE_GUID(CLSID_IntDitherer
, 0x05F6FE1A, 0xECEF, 0x11D0, 0xAA,0xE7, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
291 DEFINE_GUID(CLSID_MHTMLDocument
, 0x3050F3D9, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
292 DEFINE_GUID(CLSID_Scriptlet
, 0xAE24FDAE, 0x03C6, 0x11D1, 0x8B,0x76, 0x00,0x80,0xC7,0x44,0xF3,0x89);
293 DEFINE_GUID(CLSID_TridentAPI
, 0x429AF92C, 0xA51F, 0x11D2, 0x86,0x1E, 0x00,0xC0,0x4F,0xA3,0x5C,0x89);
295 #define INF_SET_ID(id) \
298 static CHAR name[] = #id; \
300 pse[i].pszName = name; \
304 #define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
306 static HRESULT
register_server(BOOL do_register
)
310 HRESULT (WINAPI
*pRegInstall
)(HMODULE hm
, LPCSTR pszSection
, const STRTABLEA
* pstTable
);
313 static CLSID
const *clsids
[35];
316 static const WCHAR wszAdvpack
[] = {'a','d','v','p','a','c','k','.','d','l','l',0};
318 TRACE("(%x)\n", do_register
);
320 INF_SET_CLSID(AboutProtocol
);
321 INF_SET_CLSID(CAnchorBrowsePropertyPage
);
322 INF_SET_CLSID(CBackgroundPropertyPage
);
323 INF_SET_CLSID(CCDAnchorPropertyPage
);
324 INF_SET_CLSID(CCDGenericPropertyPage
);
325 INF_SET_CLSID(CDocBrowsePropertyPage
);
326 INF_SET_CLSID(CDwnBindInfo
);
327 INF_SET_CLSID(CHiFiUses
);
328 INF_SET_CLSID(CHtmlComponentConstructor
);
329 INF_SET_CLSID(CImageBrowsePropertyPage
);
330 INF_SET_CLSID(CInlineStylePropertyPage
);
331 INF_SET_CLSID(CPeerHandler
);
332 INF_SET_CLSID(CRecalcEngine
);
333 INF_SET_CLSID(CSvrOMUses
);
334 INF_SET_CLSID(CrSource
);
335 INF_SET_CLSID(ExternalFrameworkSite
);
336 INF_SET_CLSID(HTADocument
);
337 INF_SET_CLSID(HTMLDocument
);
338 INF_SET_CLSID(HTMLLoadOptions
);
339 INF_SET_CLSID(HTMLPluginDocument
);
340 INF_SET_CLSID(HTMLPopup
);
341 INF_SET_CLSID(HTMLPopupDoc
);
342 INF_SET_CLSID(HTMLServerDoc
);
343 INF_SET_CLSID(HTMLWindowProxy
);
344 INF_SET_CLSID(IImageDecodeFilter
);
345 INF_SET_CLSID(IImgCtx
);
346 INF_SET_CLSID(IntDitherer
);
347 INF_SET_CLSID(JSProtocol
);
348 INF_SET_CLSID(MHTMLDocument
);
349 INF_SET_CLSID(MailtoProtocol
);
350 INF_SET_CLSID(ResProtocol
);
351 INF_SET_CLSID(Scriptlet
);
352 INF_SET_CLSID(SysimageProtocol
);
353 INF_SET_CLSID(TridentAPI
);
354 INF_SET_ID(LIBID_MSHTML
);
356 for(i
=0; i
< sizeof(pse
)/sizeof(pse
[0]); i
++) {
357 pse
[i
].pszValue
= heap_alloc(39);
358 sprintf(pse
[i
].pszValue
, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
359 clsids
[i
]->Data1
, clsids
[i
]->Data2
, clsids
[i
]->Data3
, clsids
[i
]->Data4
[0],
360 clsids
[i
]->Data4
[1], clsids
[i
]->Data4
[2], clsids
[i
]->Data4
[3], clsids
[i
]->Data4
[4],
361 clsids
[i
]->Data4
[5], clsids
[i
]->Data4
[6], clsids
[i
]->Data4
[7]);
364 strtable
.cEntries
= sizeof(pse
)/sizeof(pse
[0]);
367 hAdvpack
= LoadLibraryW(wszAdvpack
);
368 pRegInstall
= (void *)GetProcAddress(hAdvpack
, "RegInstall");
370 hres
= pRegInstall(hInst
, do_register
? "RegisterDll" : "UnregisterDll", &strtable
);
372 for(i
=0; i
< sizeof(pse
)/sizeof(pse
[0]); i
++)
373 heap_free(pse
[i
].pszValue
);
376 ERR("RegInstall failed: %08x\n", hres
);
383 static const WCHAR wszMSHTML
[] = {'m','s','h','t','m','l','.','t','l','b',0};
385 hres
= LoadTypeLibEx(wszMSHTML
, REGKIND_REGISTER
, &typelib
);
387 ITypeLib_Release(typelib
);
389 hres
= UnRegisterTypeLib(&LIBID_MSHTML
, 4, 0, LOCALE_SYSTEM_DEFAULT
, SYS_WIN32
);
393 ERR("typelib registration failed: %08x\n", hres
);
395 if(do_register
&& SUCCEEDED(hres
))
404 /***********************************************************************
405 * DllRegisterServer (MSHTML.@)
407 HRESULT WINAPI
DllRegisterServer(void)
409 return register_server(TRUE
);
412 /***********************************************************************
413 * DllUnregisterServer (MSHTML.@)
415 HRESULT WINAPI
DllUnregisterServer(void)
417 return register_server(FALSE
);
420 const char *debugstr_variant(const VARIANT
*v
)
424 return wine_dbg_sprintf("{VT_EMPTY}");
426 return wine_dbg_sprintf("{VT_NULL}");
428 return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v
));
430 return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v
));
432 return wine_dbg_sprintf("{VT_BSTR: %s}", debugstr_w(V_BSTR(v
)));
434 return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v
));
436 return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v
));
438 return wine_dbg_sprintf("{vt %d}", V_VT(v
));