urlmon: Add GetIUriPriv stub.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2019-05-17 15:04:47 +08:00 committed by Alexandre Julliard
parent d622ebdb10
commit 39cc121640
2 changed files with 13 additions and 0 deletions

View File

@ -53,6 +53,7 @@
@ stdcall GetClassFileOrMime(ptr wstr ptr long wstr long ptr)
@ stub GetClassURL
@ stub GetComponentIDFromCLSSPEC
@ stdcall GetIUriPriv(ptr ptr)
@ stub GetMarkOfTheWeb
@ stdcall GetSoftwareUpdateInfo(wstr ptr)
@ stub HlinkGoBack

View File

@ -838,3 +838,15 @@ BOOL WINAPI ShouldShowIntranetWarningSecband(DWORD unk)
FIXME("%x: stub\n", unk);
return FALSE;
}
/***********************************************************************
* GetIUriPriv (urlmon.@)
*
* Not documented.
*/
HRESULT WINAPI GetIUriPriv(IUri *uri, void **p)
{
FIXME("(%p,%p): stub\n", uri, p);
*p = NULL;
return E_NOTIMPL;
}