Some UrlCache stubs.
This commit is contained in:
parent
1d60387e9c
commit
7c578ab349
|
@ -114,6 +114,19 @@ BOOL WINAPI GetUrlCacheEntryInfoA(LPCSTR lpszUrl,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUrlCacheEntryInfoW (WININET.@)
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI GetUrlCacheEntryInfoW(LPCWSTR lpszUrl,
|
||||
LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntry,
|
||||
LPDWORD lpCacheEntrySize)
|
||||
{
|
||||
FIXME("(%s) stub\n",debugstr_w(lpszUrl));
|
||||
SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUrlCacheEntryInfoExA (WININET.@)
|
||||
*
|
||||
|
@ -149,3 +162,25 @@ BOOL WINAPI GetUrlCacheEntryInfoExW(
|
|||
INTERNET_SetLastError(ERROR_FILE_NOT_FOUND);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUrlCacheConfigInfoA (WININET.@)
|
||||
*
|
||||
* CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google
|
||||
*/
|
||||
BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
|
||||
{
|
||||
FIXME("\n");
|
||||
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUrlCacheConfigInfoW (WININET.@)
|
||||
*/
|
||||
BOOL GetUrlCacheConfigInfoW(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
|
||||
{
|
||||
FIXME("\n");
|
||||
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -51,12 +51,12 @@
|
|||
@ stub FtpRenameFileW
|
||||
@ stdcall FtpSetCurrentDirectoryA(ptr str)
|
||||
@ stdcall FtpSetCurrentDirectoryW(ptr wstr)
|
||||
@ stub GetUrlCacheConfigInfoA
|
||||
@ stub GetUrlCacheConfigInfoW
|
||||
@ stdcall GetUrlCacheConfigInfoA(ptr ptr long)
|
||||
@ stdcall GetUrlCacheConfigInfoW(ptr ptr long)
|
||||
@ stdcall GetUrlCacheEntryInfoA(str ptr long)
|
||||
@ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long)
|
||||
@ stdcall GetUrlCacheEntryInfoExW(wstr ptr ptr wstr ptr ptr long)
|
||||
@ stub GetUrlCacheEntryInfoW
|
||||
@ stdcall GetUrlCacheEntryInfoW(wstr ptr long)
|
||||
@ stub GetUrlCacheHeaderData
|
||||
@ stub GopherCreateLocatorA
|
||||
@ stub GopherCreateLocatorW
|
||||
|
|
Loading…
Reference in New Issue