wininet: Add a stub for InternetShowSecurityInfoByURL.
This commit is contained in:
parent
f48b0aa6a2
commit
1c7d349f26
|
@ -5167,3 +5167,21 @@ BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
|
|||
FIXME("STUB: flags=%d host=%s length=%d\n",flags,szHost,length);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* InternetShowSecurityInfoByURLA (@)
|
||||
*/
|
||||
BOOL WINAPI InternetShowSecurityInfoByURLA(LPCSTR url, HWND window)
|
||||
{
|
||||
FIXME("stub: %s %p\n", url, window);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* InternetShowSecurityInfoByURLW (@)
|
||||
*/
|
||||
BOOL WINAPI InternetShowSecurityInfoByURLW(LPCWSTR url, HWND window)
|
||||
{
|
||||
FIXME("stub: %s %p\n", debugstr_w(url), window);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue