mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
wininet: Add a stub for ShowX509EncodedCertificate.
This commit is contained in:
parent
0a9caf3e81
commit
adea3c5dda
2 changed files with 10 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue