mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
wininet: Added InternetGetSecurityInfoByURL* stubs.
This commit is contained in:
parent
6f8149e5e3
commit
4c7e9aa920
@ -2702,6 +2702,7 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
|
|||||||
SetLastError(ERROR_INTERNET_BAD_OPTION_LENGTH);
|
SetLastError(ERROR_INTERNET_BAD_OPTION_LENGTH);
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
} else
|
} else
|
||||||
|
TRACE("INTERNET_OPTION_ERROR_MASK: %x\n", *(ULONG*)lpBuffer);
|
||||||
lpwhh->ErrorMask = *(ULONG*)lpBuffer;
|
lpwhh->ErrorMask = *(ULONG*)lpBuffer;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -4413,6 +4414,24 @@ DWORD WINAPI PrivacyGetZonePreferenceW( DWORD zone, DWORD type, LPDWORD template
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* InternetGetSecurityInfoByURLA (WININET.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI InternetGetSecurityInfoByURLA(LPSTR lpszURL, PCCERT_CHAIN_CONTEXT *ppCertChain, DWORD *pdwSecureFlags)
|
||||||
|
{
|
||||||
|
FIXME("(%s %p %p)\n", debugstr_a(lpszURL), ppCertChain, pdwSecureFlags);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* InternetGetSecurityInfoByURLW (WININET.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI InternetGetSecurityInfoByURLW(LPCWSTR lpszURL, PCCERT_CHAIN_CONTEXT *ppCertChain, DWORD *pdwSecureFlags)
|
||||||
|
{
|
||||||
|
FIXME("(%s %p %p)\n", debugstr_w(lpszURL), ppCertChain, pdwSecureFlags);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
|
DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
|
||||||
DWORD_PTR* lpdwConnection, DWORD dwReserved )
|
DWORD_PTR* lpdwConnection, DWORD dwReserved )
|
||||||
{
|
{
|
||||||
|
@ -157,6 +157,9 @@
|
|||||||
@ stdcall InternetGetLastResponseInfoW(ptr ptr ptr)
|
@ stdcall InternetGetLastResponseInfoW(ptr ptr ptr)
|
||||||
@ stdcall InternetGetPerSiteCookieDecisionA(str ptr)
|
@ stdcall InternetGetPerSiteCookieDecisionA(str ptr)
|
||||||
@ stdcall InternetGetPerSiteCookieDecisionW(wstr ptr)
|
@ stdcall InternetGetPerSiteCookieDecisionW(wstr ptr)
|
||||||
|
@ stdcall InternetGetSecurityInfoByURL(str ptr ptr) InternetGetSecurityInfoByURLA
|
||||||
|
@ stdcall InternetGetSecurityInfoByURLA(str ptr ptr)
|
||||||
|
@ stdcall InternetGetSecurityInfoByURLW(wstr ptr ptr)
|
||||||
@ stdcall InternetGoOnline(str long long) InternetGoOnlineA
|
@ stdcall InternetGoOnline(str long long) InternetGoOnlineA
|
||||||
@ stdcall InternetGoOnlineA(str long long)
|
@ stdcall InternetGoOnlineA(str long long)
|
||||||
@ stdcall InternetGoOnlineW(wstr long long)
|
@ stdcall InternetGoOnlineW(wstr long long)
|
||||||
|
@ -123,6 +123,9 @@ BOOL WINAPI IsUrlCacheEntryExpiredW(LPCWSTR,DWORD,FILETIME*);
|
|||||||
BOOL WINAPI SetUrlCacheConfigInfoA(LPINTERNET_CACHE_CONFIG_INFOA,DWORD);
|
BOOL WINAPI SetUrlCacheConfigInfoA(LPINTERNET_CACHE_CONFIG_INFOA,DWORD);
|
||||||
BOOL WINAPI SetUrlCacheConfigInfoW(LPINTERNET_CACHE_CONFIG_INFOW,DWORD);
|
BOOL WINAPI SetUrlCacheConfigInfoW(LPINTERNET_CACHE_CONFIG_INFOW,DWORD);
|
||||||
#define SetUrlCacheConfigInfo WINELIB_NAME_AW(SetUrlCacheConfigInfo)
|
#define SetUrlCacheConfigInfo WINELIB_NAME_AW(SetUrlCacheConfigInfo)
|
||||||
|
BOOL WINAPI InternetGetSecurityInfoByURLA(LPSTR,PCCERT_CHAIN_CONTEXT*,DWORD*);
|
||||||
|
BOOL WINAPI InternetGetSecurityInfoByURLW(LPCWSTR,PCCERT_CHAIN_CONTEXT*,DWORD*);
|
||||||
|
#define InternetGetSecurityInfoByURL WINELIB_NAME_AW(InternetGetSecurityInfoByURL)
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user