Commit ece5e478 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Added stub for DeleteIE3Cache.

parent 3944cb3b
...@@ -2125,3 +2125,13 @@ BOOL WINAPI GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmas ...@@ -2125,3 +2125,13 @@ BOOL WINAPI GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmas
INTERNET_SetLastError(ERROR_INVALID_PARAMETER); INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
return FALSE; return FALSE;
} }
/***********************************************************************
* DeleteIE3Cache (WININET.@)
*
*/
DWORD WINAPI DeleteIE3Cache(DWORD long1, DWORD long2, LPSTR strbufA, DWORD long3)
{
FIXME("(%ld, %ld, %s, %ld)\n", long1, long2, debugstr_a(strbufA), long3);
return 0;
}
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
@ stdcall CreateUrlCacheEntryA(str long str ptr long) @ stdcall CreateUrlCacheEntryA(str long str ptr long)
@ stub CreateUrlCacheEntryW @ stub CreateUrlCacheEntryW
@ stdcall CreateUrlCacheGroup(long ptr) @ stdcall CreateUrlCacheGroup(long ptr)
@ stub DeleteIE3Cache @ stdcall DeleteIE3Cache(long long str long)
@ stub DeleteUrlCacheContainerA @ stub DeleteUrlCacheContainerA
@ stub DeleteUrlCacheContainerW @ stub DeleteUrlCacheContainerW
@ stdcall DeleteUrlCacheEntry(str) DeleteUrlCacheEntryA @ stdcall DeleteUrlCacheEntry(str) DeleteUrlCacheEntryA
......
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