wininet: Add a stub for ShowX509EncodedCertificate.

This commit is contained in:
André Hentschel 2011-10-29 15:08:08 +02:00 committed by Alexandre Julliard
parent 0a9caf3e81
commit adea3c5dda
2 changed files with 10 additions and 1 deletions

View file

@ -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;
}

View file

@ -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)