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:
parent
d622ebdb10
commit
39cc121640
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue