Commit 39cc1216 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

urlmon: Add GetIUriPriv stub.

parent d622ebdb
......@@ -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
......
......@@ -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;
}
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