Commit f625f4a0 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Fix type of DeleteIE3Cache function.

parent 2e569d14
......@@ -2129,9 +2129,18 @@ BOOL WINAPI GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmas
/***********************************************************************
* DeleteIE3Cache (WININET.@)
*
* Deletes the files used by the IE3 URL caching system.
*
* PARAMS
* hWnd [I] A dummy window.
* hInst [I] Instance of process calling the function.
* lpszCmdLine [I] Options used by function.
* nCmdShow [I] The nCmdShow value to use when showing windows created, if any.
*
* RETURNS
* nothing
*/
DWORD WINAPI DeleteIE3Cache(DWORD long1, DWORD long2, LPSTR strbufA, DWORD long3)
void WINAPI DeleteIE3Cache(HWND hWnd, HINSTANCE hInst, LPSTR lpszCmdLine, int nCmdShow)
{
FIXME("(%ld, %ld, %s, %ld)\n", long1, long2, debugstr_a(strbufA), long3);
return 0;
FIXME("(%p, %p, %s, %d)\n", hWnd, hInst, debugstr_a(lpszCmdLine), nCmdShow);
}
......@@ -25,7 +25,7 @@
@ stdcall CreateUrlCacheEntryA(str long str ptr long)
@ stub CreateUrlCacheEntryW
@ stdcall CreateUrlCacheGroup(long ptr)
@ stdcall DeleteIE3Cache(long long str long)
@ stdcall DeleteIE3Cache(ptr ptr str long)
@ stub DeleteUrlCacheContainerA
@ stub DeleteUrlCacheContainerW
@ 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