mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Added stubs for IsHostInProxyBypassList and GetUrlCacheEntryInfoExA.
This commit is contained in:
parent
6c963cad4e
commit
b09eef23b3
@ -1622,3 +1622,15 @@ BOOL HTTP_DeleteCustomHeader(INT index)
|
||||
FIXME("STUB\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IsHostInProxyBypassList (@)
|
||||
*
|
||||
* Undocumented
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
|
||||
{
|
||||
FIXME("STUB: flags=%ld host=%s length=%ld\n",flags,szHost,length);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -87,3 +87,21 @@ BOOL WINAPI SetUrlCacheEntryGroup(LPCSTR lpszUrlName, DWORD dwFlags,
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUrlCacheEntryInfoExA (WININET.@)
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI GetUrlCacheEntryInfoExA(
|
||||
LPCSTR lpszUrl,
|
||||
LPINTERNET_CACHE_ENTRY_INFOA lpCacheEntryInfo,
|
||||
LPDWORD lpdwCacheEntryInfoBufSize,
|
||||
LPSTR lpszReserved,
|
||||
LPDWORD lpdwReserved,
|
||||
LPVOID lpReserved,
|
||||
DWORD dwFlags)
|
||||
{
|
||||
FIXME(" url=%s, flags=%ld\n",lpszUrl,dwFlags);
|
||||
INTERNET_SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -51,7 +51,7 @@
|
||||
@ stub GetUrlCacheConfigInfoA
|
||||
@ stub GetUrlCacheConfigInfoW
|
||||
@ stdcall GetUrlCacheEntryInfoA(str ptr long) GetUrlCacheEntryInfoA
|
||||
@ stub GetUrlCacheEntryInfoExA
|
||||
@ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long) GetUrlCacheEntryInfoExA
|
||||
@ stub GetUrlCacheEntryInfoExW
|
||||
@ stub GetUrlCacheEntryInfoW
|
||||
@ stub GetUrlCacheHeaderData
|
||||
@ -138,7 +138,7 @@
|
||||
@ stdcall InternetWriteFile(ptr ptr long ptr) InternetWriteFile
|
||||
@ stub InternetWriteFileExA
|
||||
@ stub InternetWriteFileExW
|
||||
@ stub IsHostInProxyBypassList
|
||||
@ stdcall IsHostInProxyBypassList(long str long) IsHostInProxyBypassList
|
||||
@ stub LoadUrlCacheContent
|
||||
@ stub ParseX509EncodedCertificateForListBoxEntry
|
||||
@ stub ReadUrlCacheEntryStream
|
||||
|
Loading…
Reference in New Issue
Block a user