mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +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");
|
FIXME("STUB\n");
|
||||||
return FALSE;
|
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);
|
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||||
return FALSE;
|
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 GetUrlCacheConfigInfoA
|
||||||
@ stub GetUrlCacheConfigInfoW
|
@ stub GetUrlCacheConfigInfoW
|
||||||
@ stdcall GetUrlCacheEntryInfoA(str ptr long) GetUrlCacheEntryInfoA
|
@ stdcall GetUrlCacheEntryInfoA(str ptr long) GetUrlCacheEntryInfoA
|
||||||
@ stub GetUrlCacheEntryInfoExA
|
@ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long) GetUrlCacheEntryInfoExA
|
||||||
@ stub GetUrlCacheEntryInfoExW
|
@ stub GetUrlCacheEntryInfoExW
|
||||||
@ stub GetUrlCacheEntryInfoW
|
@ stub GetUrlCacheEntryInfoW
|
||||||
@ stub GetUrlCacheHeaderData
|
@ stub GetUrlCacheHeaderData
|
||||||
@ -138,7 +138,7 @@
|
|||||||
@ stdcall InternetWriteFile(ptr ptr long ptr) InternetWriteFile
|
@ stdcall InternetWriteFile(ptr ptr long ptr) InternetWriteFile
|
||||||
@ stub InternetWriteFileExA
|
@ stub InternetWriteFileExA
|
||||||
@ stub InternetWriteFileExW
|
@ stub InternetWriteFileExW
|
||||||
@ stub IsHostInProxyBypassList
|
@ stdcall IsHostInProxyBypassList(long str long) IsHostInProxyBypassList
|
||||||
@ stub LoadUrlCacheContent
|
@ stub LoadUrlCacheContent
|
||||||
@ stub ParseX509EncodedCertificateForListBoxEntry
|
@ stub ParseX509EncodedCertificateForListBoxEntry
|
||||||
@ stub ReadUrlCacheEntryStream
|
@ stub ReadUrlCacheEntryStream
|
||||||
|
Loading…
Reference in New Issue
Block a user