[PATCH] urlmon: Add ShouldShowIntranetWarningSecband stub.

Dmitry Timoshkov dmitry at baikal.ru
Fri May 17 02:04:29 CDT 2019


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/urlmon/urlmon.spec   |  1 +
 dlls/urlmon/urlmon_main.c | 10 ++++++++++
 2 files changed, 11 insertions(+)

diff --git a/dlls/urlmon/urlmon.spec b/dlls/urlmon/urlmon.spec
index dab4aa2925..445db63f95 100644
--- a/dlls/urlmon/urlmon.spec
+++ b/dlls/urlmon/urlmon.spec
@@ -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)
diff --git a/dlls/urlmon/urlmon_main.c b/dlls/urlmon/urlmon_main.c
index 90ea6e7cf2..d416cc43de 100644
--- a/dlls/urlmon/urlmon_main.c
+++ b/dlls/urlmon/urlmon_main.c
@@ -838,3 +838,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;
+}
-- 
2.20.1




More information about the wine-devel mailing list