Commit 8e6ae023 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Stub out SetUrlCacheEntryInfoA/W.

parent d2b8e39b
...@@ -168,7 +168,7 @@ BOOL WINAPI GetUrlCacheEntryInfoExW( ...@@ -168,7 +168,7 @@ BOOL WINAPI GetUrlCacheEntryInfoExW(
* *
* CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google * CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google
*/ */
BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask) BOOL WINAPI GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
{ {
FIXME("\n"); FIXME("\n");
INTERNET_SetLastError(ERROR_INVALID_PARAMETER); INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
...@@ -178,9 +178,28 @@ BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask) ...@@ -178,9 +178,28 @@ BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
/*********************************************************************** /***********************************************************************
* GetUrlCacheConfigInfoW (WININET.@) * GetUrlCacheConfigInfoW (WININET.@)
*/ */
BOOL GetUrlCacheConfigInfoW(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask) BOOL WINAPI GetUrlCacheConfigInfoW(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
{ {
FIXME("\n"); FIXME("\n");
INTERNET_SetLastError(ERROR_INVALID_PARAMETER); INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
return FALSE; return FALSE;
} }
/***********************************************************************
* SetUrlCacheEntryInfoA (WININET.@)
*/
BOOL WINAPI SetUrlCacheEntryInfoA(LPCSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOA lpCacheEntryInfo, DWORD dwFieldControl)
{
FIXME("stub\n");
return FALSE;
}
/***********************************************************************
* SetUrlCacheEntryInfoW (WININET.@)
*/
BOOL WINAPI SetUrlCacheEntryInfoW(LPCWSTR lpszUrlName, LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntryInfo, DWORD dwFieldControl)
{
FIXME("stub\n");
return FALSE;
}
...@@ -156,8 +156,8 @@ ...@@ -156,8 +156,8 @@
@ stub SetUrlCacheConfigInfoA @ stub SetUrlCacheConfigInfoA
@ stub SetUrlCacheConfigInfoW @ stub SetUrlCacheConfigInfoW
@ stdcall SetUrlCacheEntryGroup(str long double ptr long ptr) @ stdcall SetUrlCacheEntryGroup(str long double ptr long ptr)
@ stub SetUrlCacheEntryInfoA @ stdcall SetUrlCacheEntryInfoA(str ptr long)
@ stub SetUrlCacheEntryInfoW @ stdcall SetUrlCacheEntryInfoW(wstr ptr long)
@ stub SetUrlCacheHeaderData @ stub SetUrlCacheHeaderData
@ stub ShowClientAuthCerts @ stub ShowClientAuthCerts
@ stub ShowSecurityInfo @ stub ShowSecurityInfo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment