urlmon: Add ShouldShowIntranetWarningSecband 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
422b625c9b
commit
d622ebdb10
|
@ -77,6 +77,7 @@
|
|||
@ stdcall RevokeBindStatusCallback(ptr ptr)
|
||||
@ stdcall RevokeFormatEnumerator(ptr ptr)
|
||||
@ stub SetSoftwareUpdateAdvertisementState
|
||||
@ stdcall ShouldShowIntranetWarningSecband(long)
|
||||
@ stub URLDownloadA
|
||||
@ stdcall URLDownloadToCacheFileA(ptr str str long long ptr)
|
||||
@ stdcall URLDownloadToCacheFileW(ptr wstr wstr long long ptr)
|
||||
|
|
|
@ -828,3 +828,13 @@ HRESULT WINAPI RegisterMediaTypes(UINT types, LPCSTR *szTypes, CLIPFORMAT *cfTyp
|
|||
FIXME("stub: %u %p %p\n", types, szTypes, cfTypes);
|
||||
return E_INVALIDARG;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ShouldShowIntranetWarningSecband
|
||||
* Undocumented, added in IE7
|
||||
*/
|
||||
BOOL WINAPI ShouldShowIntranetWarningSecband(DWORD unk)
|
||||
{
|
||||
FIXME("%x: stub\n", unk);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue