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
39 #include "wine/debug.h"
42 #include "mshtml_private.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
48 DWORD mshtml_tls
= TLS_OUT_OF_INDEXES
;
50 static HINSTANCE shdoclc
= NULL
;
51 static HDC display_dc
;
52 static WCHAR
*status_strings
[IDS_STATUS_LAST
-IDS_STATUS_FIRST
+1];
54 static void thread_detach(void)
56 thread_data_t
*thread_data
;
58 thread_data
= get_thread_data(FALSE
);
62 if(thread_data
->thread_hwnd
)
63 DestroyWindow(thread_data
->thread_hwnd
);
65 heap_free(thread_data
);
68 static void free_strings(void)
71 for(i
= 0; i
< sizeof(status_strings
)/sizeof(*status_strings
); i
++)
72 heap_free(status_strings
[i
]);
75 static void process_detach(void)
82 if(mshtml_tls
!= TLS_OUT_OF_INDEXES
)
85 DeleteObject(display_dc
);
90 void set_statustext(HTMLDocumentObj
* doc
, INT id
, LPCWSTR arg
)
92 int index
= id
- IDS_STATUS_FIRST
;
93 WCHAR
*p
= status_strings
[index
];
101 p
= heap_alloc(len
* sizeof(WCHAR
));
102 len
= LoadStringW(hInst
, id
, p
, len
) + 1;
103 p
= heap_realloc(p
, len
* sizeof(WCHAR
));
104 if(InterlockedCompareExchangePointer((void**)&status_strings
[index
], p
, NULL
)) {
106 p
= status_strings
[index
];
113 len
= lstrlenW(p
) + lstrlenW(arg
) - 1;
114 buf
= heap_alloc(len
* sizeof(WCHAR
));
116 snprintfW(buf
, len
, p
, arg
);
121 IOleInPlaceFrame_SetStatusText(doc
->frame
, p
);
127 HRESULT
do_query_service(IUnknown
*unk
, REFGUID guid_service
, REFIID riid
, void **ppv
)
129 IServiceProvider
*sp
;
132 hres
= IUnknown_QueryInterface(unk
, &IID_IServiceProvider
, (void**)&sp
);
136 hres
= IServiceProvider_QueryService(sp
, guid_service
, riid
, ppv
);
137 IServiceProvider_Release(sp
);
141 HINSTANCE
get_shdoclc(void)
143 static const WCHAR wszShdoclc
[] =
144 {'s','h','d','o','c','l','c','.','d','l','l',0};
149 return shdoclc
= LoadLibraryExW(wszShdoclc
, NULL
, LOAD_LIBRARY_AS_DATAFILE
);
152 HDC
get_display_dc(void)
154 static const WCHAR displayW
[] = {'D','I','S','P','L','A','Y',0};
159 hdc
= CreateICW(displayW
, NULL
, NULL
, NULL
);
160 if(InterlockedCompareExchangePointer((void**)&display_dc
, hdc
, NULL
))
167 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID reserved
)
170 case DLL_PROCESS_ATTACH
:
173 case DLL_PROCESS_DETACH
:
177 case DLL_THREAD_DETACH
:
184 /***********************************************************
185 * ClassFactory implementation
187 typedef HRESULT (*CreateInstanceFunc
)(IUnknown
*,REFIID
,void**);
189 IClassFactory IClassFactory_iface
;
191 CreateInstanceFunc fnCreateInstance
;
194 static inline ClassFactory
*impl_from_IClassFactory(IClassFactory
*iface
)
196 return CONTAINING_RECORD(iface
, ClassFactory
, IClassFactory_iface
);
199 static HRESULT WINAPI
ClassFactory_QueryInterface(IClassFactory
*iface
, REFGUID riid
, void **ppvObject
)
201 if(IsEqualGUID(&IID_IClassFactory
, riid
) || IsEqualGUID(&IID_IUnknown
, riid
)) {
202 IClassFactory_AddRef(iface
);
207 WARN("not supported iid %s\n", debugstr_mshtml_guid(riid
));
209 return E_NOINTERFACE
;
212 static ULONG WINAPI
ClassFactory_AddRef(IClassFactory
*iface
)
214 ClassFactory
*This
= impl_from_IClassFactory(iface
);
215 ULONG ref
= InterlockedIncrement(&This
->ref
);
216 TRACE("(%p) ref = %u\n", This
, ref
);
220 static ULONG WINAPI
ClassFactory_Release(IClassFactory
*iface
)
222 ClassFactory
*This
= impl_from_IClassFactory(iface
);
223 ULONG ref
= InterlockedDecrement(&This
->ref
);
225 TRACE("(%p) ref = %u\n", This
, ref
);
234 static HRESULT WINAPI
ClassFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*pUnkOuter
,
235 REFIID riid
, void **ppvObject
)
237 ClassFactory
*This
= impl_from_IClassFactory(iface
);
238 return This
->fnCreateInstance(pUnkOuter
, riid
, ppvObject
);
241 static HRESULT WINAPI
ClassFactory_LockServer(IClassFactory
*iface
, BOOL dolock
)
243 TRACE("(%p)->(%x)\n", iface
, dolock
);
245 /* We never unload the DLL. See DllCanUnloadNow(). */
249 static const IClassFactoryVtbl HTMLClassFactoryVtbl
= {
250 ClassFactory_QueryInterface
,
252 ClassFactory_Release
,
253 ClassFactory_CreateInstance
,
254 ClassFactory_LockServer
257 static HRESULT
ClassFactory_Create(REFIID riid
, void **ppv
, CreateInstanceFunc fnCreateInstance
)
259 ClassFactory
*ret
= heap_alloc(sizeof(ClassFactory
));
262 ret
->IClassFactory_iface
.lpVtbl
= &HTMLClassFactoryVtbl
;
264 ret
->fnCreateInstance
= fnCreateInstance
;
266 hres
= IClassFactory_QueryInterface(&ret
->IClassFactory_iface
, riid
, ppv
);
274 /******************************************************************
275 * DllGetClassObject (MSHTML.@)
277 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
279 if(IsEqualGUID(&CLSID_HTMLDocument
, rclsid
)) {
280 TRACE("(CLSID_HTMLDocument %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
281 return ClassFactory_Create(riid
, ppv
, HTMLDocument_Create
);
282 }else if(IsEqualGUID(&CLSID_AboutProtocol
, rclsid
)) {
283 TRACE("(CLSID_AboutProtocol %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
284 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
285 }else if(IsEqualGUID(&CLSID_JSProtocol
, rclsid
)) {
286 TRACE("(CLSID_JSProtocol %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
287 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
288 }else if(IsEqualGUID(&CLSID_MailtoProtocol
, rclsid
)) {
289 TRACE("(CLSID_MailtoProtocol %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
290 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
291 }else if(IsEqualGUID(&CLSID_ResProtocol
, rclsid
)) {
292 TRACE("(CLSID_ResProtocol %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
293 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
294 }else if(IsEqualGUID(&CLSID_SysimageProtocol
, rclsid
)) {
295 TRACE("(CLSID_SysimageProtocol %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
296 return ProtocolFactory_Create(rclsid
, riid
, ppv
);
297 }else if(IsEqualGUID(&CLSID_HTMLLoadOptions
, rclsid
)) {
298 TRACE("(CLSID_HTMLLoadOptions %s %p)\n", debugstr_mshtml_guid(riid
), ppv
);
299 return ClassFactory_Create(riid
, ppv
, HTMLLoadOptions_Create
);
302 FIXME("Unknown class %s\n", debugstr_guid(rclsid
));
303 return CLASS_E_CLASSNOTAVAILABLE
;
306 /******************************************************************
307 * DllCanUnloadNow (MSHTML.@)
309 HRESULT WINAPI
DllCanUnloadNow(void)
312 /* The cost of keeping this DLL in memory is small. */
316 /***********************************************************************
317 * RunHTMLApplication (MSHTML.@)
319 * Appears to have the same prototype as WinMain.
321 HRESULT WINAPI
RunHTMLApplication( HINSTANCE hinst
, HINSTANCE hPrevInst
,
322 LPSTR szCmdLine
, INT nCmdShow
)
324 FIXME("%p %p %s %d\n", hinst
, hPrevInst
, debugstr_a(szCmdLine
), nCmdShow
);
328 /***********************************************************************
329 * RNIGetCompatibleVersion (MSHTML.@)
331 DWORD WINAPI
RNIGetCompatibleVersion(void)
337 /***********************************************************************
338 * DllInstall (MSHTML.@)
340 HRESULT WINAPI
DllInstall(BOOL bInstall
, LPCWSTR cmdline
)
342 FIXME("stub %d %s: returning S_OK\n", bInstall
, debugstr_w(cmdline
));
346 /***********************************************************************
347 * ShowHTMLDialog (MSHTML.@)
349 HRESULT WINAPI
ShowHTMLDialog(HWND hwndParent
, IMoniker
*pMk
, VARIANT
*pvarArgIn
,
350 WCHAR
*pchOptions
, VARIANT
*pvarArgOut
)
352 FIXME("(%p %p %p %s %p)\n", hwndParent
, pMk
, pvarArgIn
, debugstr_w(pchOptions
), pvarArgOut
);
356 /***********************************************************************
357 * PrintHTML (MSHTML.@)
359 void WINAPI
PrintHTML(HWND hwnd
, HINSTANCE handle
, LPCSTR cmdline
, INT show
)
361 FIXME("(%p %p %s %x)\n", hwnd
, handle
, debugstr_a(cmdline
), show
);
364 DEFINE_GUID(CLSID_CBackgroundPropertyPage
, 0x3050F232, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
365 DEFINE_GUID(CLSID_CCDAnchorPropertyPage
, 0x3050F1FC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
366 DEFINE_GUID(CLSID_CCDGenericPropertyPage
, 0x3050F17F, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
367 DEFINE_GUID(CLSID_CDwnBindInfo
, 0x3050F3C2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
368 DEFINE_GUID(CLSID_CHiFiUses
, 0x5AAF51B3, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
369 DEFINE_GUID(CLSID_CHtmlComponentConstructor
, 0x3050F4F8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
370 DEFINE_GUID(CLSID_CInlineStylePropertyPage
, 0x3050F296, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
371 DEFINE_GUID(CLSID_CPeerHandler
, 0x5AAF51B2, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
372 DEFINE_GUID(CLSID_CRecalcEngine
, 0x3050F499, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
373 DEFINE_GUID(CLSID_CSvrOMUses
, 0x3050F4F0, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
374 DEFINE_GUID(CLSID_CrSource
, 0x65014010, 0x9F62, 0x11D1, 0xA6,0x51, 0x00,0x60,0x08,0x11,0xD5,0xCE);
375 DEFINE_GUID(CLSID_ExternalFrameworkSite
, 0x3050F163, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
376 DEFINE_GUID(CLSID_HTADocument
, 0x3050F5C8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
377 DEFINE_GUID(CLSID_HTMLPluginDocument
, 0x25336921, 0x03F9, 0x11CF, 0x8F,0xD0, 0x00,0xAA,0x00,0x68,0x6F,0x13);
378 DEFINE_GUID(CLSID_HTMLPopup
, 0x3050F667, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
379 DEFINE_GUID(CLSID_HTMLPopupDoc
, 0x3050F67D, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
380 DEFINE_GUID(CLSID_HTMLServerDoc
, 0x3050F4E7, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
381 DEFINE_GUID(CLSID_IImageDecodeFilter
, 0x607FD4E8, 0x0A03, 0x11D1, 0xAB,0x1D, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
382 DEFINE_GUID(CLSID_IImgCtx
, 0x3050F3D6, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
383 DEFINE_GUID(CLSID_IntDitherer
, 0x05F6FE1A, 0xECEF, 0x11D0, 0xAA,0xE7, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
384 DEFINE_GUID(CLSID_MHTMLDocument
, 0x3050F3D9, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
385 DEFINE_GUID(CLSID_TridentAPI
, 0x429AF92C, 0xA51F, 0x11D2, 0x86,0x1E, 0x00,0xC0,0x4F,0xA3,0x5C,0x89);
387 #define INF_SET_ID(id) \
390 static CHAR name[] = #id; \
392 pse[i].pszName = name; \
396 #define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
398 static HRESULT
register_server(BOOL do_register
)
402 HRESULT (WINAPI
*pRegInstall
)(HMODULE hm
, LPCSTR pszSection
, const STRTABLEA
* pstTable
);
405 static CLSID
const *clsids
[35];
408 static const WCHAR wszAdvpack
[] = {'a','d','v','p','a','c','k','.','d','l','l',0};
410 TRACE("(%x)\n", do_register
);
412 INF_SET_CLSID(AboutProtocol
);
413 INF_SET_CLSID(CAnchorBrowsePropertyPage
);
414 INF_SET_CLSID(CBackgroundPropertyPage
);
415 INF_SET_CLSID(CCDAnchorPropertyPage
);
416 INF_SET_CLSID(CCDGenericPropertyPage
);
417 INF_SET_CLSID(CDocBrowsePropertyPage
);
418 INF_SET_CLSID(CDwnBindInfo
);
419 INF_SET_CLSID(CHiFiUses
);
420 INF_SET_CLSID(CHtmlComponentConstructor
);
421 INF_SET_CLSID(CImageBrowsePropertyPage
);
422 INF_SET_CLSID(CInlineStylePropertyPage
);
423 INF_SET_CLSID(CPeerHandler
);
424 INF_SET_CLSID(CRecalcEngine
);
425 INF_SET_CLSID(CSvrOMUses
);
426 INF_SET_CLSID(CrSource
);
427 INF_SET_CLSID(ExternalFrameworkSite
);
428 INF_SET_CLSID(HTADocument
);
429 INF_SET_CLSID(HTMLDocument
);
430 INF_SET_CLSID(HTMLLoadOptions
);
431 INF_SET_CLSID(HTMLPluginDocument
);
432 INF_SET_CLSID(HTMLPopup
);
433 INF_SET_CLSID(HTMLPopupDoc
);
434 INF_SET_CLSID(HTMLServerDoc
);
435 INF_SET_CLSID(HTMLWindowProxy
);
436 INF_SET_CLSID(IImageDecodeFilter
);
437 INF_SET_CLSID(IImgCtx
);
438 INF_SET_CLSID(IntDitherer
);
439 INF_SET_CLSID(JSProtocol
);
440 INF_SET_CLSID(MHTMLDocument
);
441 INF_SET_CLSID(MailtoProtocol
);
442 INF_SET_CLSID(ResProtocol
);
443 INF_SET_CLSID(Scriptlet
);
444 INF_SET_CLSID(SysimageProtocol
);
445 INF_SET_CLSID(TridentAPI
);
446 INF_SET_ID(LIBID_MSHTML
);
448 for(i
=0; i
< sizeof(pse
)/sizeof(pse
[0]); i
++) {
449 pse
[i
].pszValue
= heap_alloc(39);
450 sprintf(pse
[i
].pszValue
, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
451 clsids
[i
]->Data1
, clsids
[i
]->Data2
, clsids
[i
]->Data3
, clsids
[i
]->Data4
[0],
452 clsids
[i
]->Data4
[1], clsids
[i
]->Data4
[2], clsids
[i
]->Data4
[3], clsids
[i
]->Data4
[4],
453 clsids
[i
]->Data4
[5], clsids
[i
]->Data4
[6], clsids
[i
]->Data4
[7]);
456 strtable
.cEntries
= sizeof(pse
)/sizeof(pse
[0]);
459 hAdvpack
= LoadLibraryW(wszAdvpack
);
460 pRegInstall
= (void *)GetProcAddress(hAdvpack
, "RegInstall");
462 hres
= pRegInstall(hInst
, do_register
? "RegisterDll" : "UnregisterDll", &strtable
);
464 FreeLibrary(hAdvpack
);
466 for(i
=0; i
< sizeof(pse
)/sizeof(pse
[0]); i
++)
467 heap_free(pse
[i
].pszValue
);
470 ERR("RegInstall failed: %08x\n", hres
);
478 /***********************************************************************
479 * DllRegisterServer (MSHTML.@)
481 HRESULT WINAPI
DllRegisterServer(void)
485 hres
= __wine_register_resources( hInst
);
487 hres
= register_server(TRUE
);
494 /***********************************************************************
495 * DllUnregisterServer (MSHTML.@)
497 HRESULT WINAPI
DllUnregisterServer(void)
499 HRESULT hres
= __wine_unregister_resources( hInst
);
500 if(SUCCEEDED(hres
)) hres
= register_server(FALSE
);
504 const char *debugstr_variant(const VARIANT
*v
)
515 return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v
));
517 return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v
));
519 return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v
));
521 return wine_dbg_sprintf("{VT_BSTR: %s}", debugstr_w(V_BSTR(v
)));
523 return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v
));
525 return wine_dbg_sprintf("{VT_ERROR: %08x}", V_ERROR(v
));
527 return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v
));
529 return wine_dbg_sprintf("{VT_UINT: %u}", V_UINT(v
));
531 return wine_dbg_sprintf("{vt %d}", V_VT(v
));
535 const char *debugstr_mshtml_guid(const GUID
*iid
)
537 #define X(x) if(IsEqualGUID(iid, &x)) return #x
538 X(DIID_DispHTMLDocument
);
539 X(DIID_HTMLDocumentEvents
);
540 X(DIID_HTMLDocumentEvents2
);
541 X(DIID_HTMLTableEvents
);
542 X(DIID_HTMLTextContainerEvents
);
543 X(IID_IConnectionPoint
);
544 X(IID_IConnectionPointContainer
);
548 X(IID_IEnumConnections
);
551 X(IID_IHTMLAttributeCollection
);
552 X(IID_IHTMLAttributeCollection2
);
553 X(IID_IHTMLAttributeCollection3
);
554 X(IID_IHTMLCurrentStyle
);
555 X(IID_IHTMLCurrentStyle2
);
556 X(IID_IHTMLCurrentStyle3
);
557 X(IID_IHTMLCurrentStyle4
);
558 X(IID_IHTMLDocument
);
559 X(IID_IHTMLDocument2
);
560 X(IID_IHTMLDocument3
);
561 X(IID_IHTMLDocument4
);
562 X(IID_IHTMLDocument5
);
563 X(IID_IHTMLDocument6
);
564 X(IID_IHTMLDocument7
);
565 X(IID_IHTMLDOMAttribute
);
566 X(IID_IHTMLDOMChildrenCollection
);
568 X(IID_IHTMLDOMNode2
);
570 X(IID_IHTMLElement2
);
571 X(IID_IHTMLElement3
);
572 X(IID_IHTMLElement4
);
573 X(IID_IHTMLElementCollection
);
574 X(IID_IHTMLEventObj
);
575 X(IID_IHTMLFiltersCollection
);
576 X(IID_IHTMLImageElementFactory
);
577 X(IID_IHTMLLocation
);
578 X(IID_IHTMLOptionElementFactory
);
588 X(IID_IHtmlLoadOptions
);
589 X(IID_IInternetHostSecurityManager
);
591 X(IID_IObjectSafety
);
592 X(IID_IObjectWithSite
);
593 X(IID_IOleContainer
);
594 X(IID_IOleCommandTarget
);
597 X(IID_IOleDocumentView
);
598 X(IID_IOleInPlaceActiveObject
);
599 X(IID_IOleInPlaceFrame
);
600 X(IID_IOleInPlaceObject
);
601 X(IID_IOleInPlaceObjectWindowless
);
602 X(IID_IOleInPlaceUIWindow
);
608 X(IID_IPersistHistory
);
609 X(IID_IPersistMoniker
);
610 X(IID_IPersistStreamInit
);
611 X(IID_IPropertyNotifySink
);
612 X(IID_IProvideClassInfo
);
613 X(IID_IServiceProvider
);
614 X(IID_ISupportErrorInfo
);
615 X(IID_ITargetContainer
);
619 X(IID_IViewObjectEx
);
620 X(IID_nsCycleCollectionISupports
);
621 X(IID_nsXPCOMCycleCollectionParticipant
);
624 return debugstr_guid(iid
);