wininet: add a stub for InternetShowSecurityInfoByURL

Austin English austinenglish at gmail.com
Wed Nov 24 20:29:04 CST 2010


Fixes http://bugs.winehq.org/show_bug.cgi?id=25278

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c
index 76cf41c..c212880 100644
--- a/dlls/wininet/http.c
+++ b/dlls/wininet/http.c
@@ -5167,3 +5167,16 @@ BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
    FIXME("STUB: flags=%d host=%s length=%d\n",flags,szHost,length);
    return FALSE;
 }
+
+/***********************************************************************
+ *           InternetShowSecurityInfoByURL (@)
+ *
+ * Undocumented, see http://groups.google.com/group/microsoft.public.inetsdk.programming.webbrowser_ctl/browse_frm/thread/b39fde88bc3c0c6f
+ *
+ */
+BOOL WINAPI InternetShowSecurityInfoByURL(LPCSTR url, HWND window)
+{
+   FIXME("stub: %s %p\n", url, window);
+   return FALSE;
+}
+
diff --git a/dlls/wininet/wininet.spec b/dlls/wininet/wininet.spec
index 1300c3d..d3c29d4 100644
--- a/dlls/wininet/wininet.spec
+++ b/dlls/wininet/wininet.spec
@@ -195,7 +195,7 @@
 @ stdcall InternetSetStatusCallback(ptr ptr) InternetSetStatusCallbackA
 @ stdcall InternetSetStatusCallbackA(ptr ptr)
 @ stdcall InternetSetStatusCallbackW(ptr ptr)
-@ stub InternetShowSecurityInfoByURL
+@ stdcall InternetShowSecurityInfoByURL(str ptr)
 @ stub InternetShowSecurityInfoByURLA
 @ stub InternetShowSecurityInfoByURLW
 @ stdcall InternetTimeFromSystemTime(ptr long ptr long) InternetTimeFromSystemTimeA


More information about the wine-patches mailing list