Commit adea3c5d authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wininet: Add a stub for ShowX509EncodedCertificate.

parent 0a9caf3e
......@@ -6071,3 +6071,12 @@ BOOL WINAPI InternetShowSecurityInfoByURLW(LPCWSTR url, HWND window)
FIXME("stub: %s %p\n", debugstr_w(url), window);
return FALSE;
}
/***********************************************************************
* ShowX509EncodedCertificate (@)
*/
DWORD WINAPI ShowX509EncodedCertificate(HWND parent, LPBYTE cert, DWORD len)
{
FIXME("stub: %p %p %u\n", parent, cert, len);
return ERROR_CALL_NOT_IMPLEMENTED;
}
......@@ -236,7 +236,7 @@
@ stub ShowCertificate
@ stub ShowClientAuthCerts
@ stub ShowSecurityInfo
@ stub ShowX509EncodedCertificate
@ stdcall ShowX509EncodedCertificate(ptr ptr long)
@ stdcall UnlockUrlCacheEntryFile(str long) UnlockUrlCacheEntryFileA
@ stdcall UnlockUrlCacheEntryFileA(str long)
@ stdcall UnlockUrlCacheEntryFileW(wstr long)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment