wininet: add a stub for InternetShowSecurityInfoByURL (try 2)

Austin English austinenglish at gmail.com
Thu Nov 25 08:59:25 CST 2010


This time, with the plain version forwarding to the A version, as well
as the W version stubbed.

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


More information about the wine-patches mailing list