Commit 5b37fe45 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added stub implementation of ShowHTMLDialog.

parent 804993de
......@@ -224,6 +224,16 @@ HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
return S_OK;
}
/***********************************************************************
* ShowHTMLDialog (MSHTML.@)
*/
HRESULT WINAPI ShowHTMLDialog(HWND hwndParent, IMoniker *pMk, VARIANT *pvarArgIn,
WCHAR *pchOptions, VARIANT *pvarArgOut)
{
FIXME("(%p %p %p %s %p)\n", hwndParent, pMk, pvarArgIn, debugstr_w(pchOptions), pvarArgOut);
return E_NOTIMPL;
}
DEFINE_GUID(CLSID_CAnchorBrowsePropertyPage, 0x3050F3BB, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
DEFINE_GUID(CLSID_CBackgroundPropertyPage, 0x3050F232, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
DEFINE_GUID(CLSID_CCDAnchorPropertyPage, 0x3050F1FC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
......
......@@ -9,7 +9,7 @@
@ stub PrintHTML
@ stdcall RNIGetCompatibleVersion()
@ stdcall RunHTMLApplication(long long str long)
@ stub ShowHTMLDialog
@ stdcall ShowHTMLDialog(ptr ptr ptr wstr ptr)
@ stub ShowModalDialog
@ stub ShowModelessHTMLDialog
@ stub SvrTri_ClearCache
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment