mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
wininet: Add a stub for RunOnceUrlCache.
This commit is contained in:
parent
c486cec0d6
commit
9536a9cc1b
2 changed files with 11 additions and 1 deletions
|
@ -3925,3 +3925,13 @@ BOOL WINAPI IncrementUrlCacheHeaderData(DWORD index, LPDWORD data)
|
|||
FIXME("(%u, %p)\n", index, data);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RunOnceUrlCache (WININET.@)
|
||||
*/
|
||||
|
||||
DWORD WINAPI RunOnceUrlCache(HWND hwnd, HINSTANCE hinst, LPSTR cmd, int cmdshow)
|
||||
{
|
||||
FIXME("(%p, %p, %s, %d): stub\n", hwnd, hinst, debugstr_a(cmd), cmdshow);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -222,7 +222,7 @@
|
|||
@ stdcall RetrieveUrlCacheEntryFileW(wstr ptr ptr long)
|
||||
@ stdcall RetrieveUrlCacheEntryStreamA(str ptr ptr long long)
|
||||
@ stdcall RetrieveUrlCacheEntryStreamW(wstr ptr ptr long long)
|
||||
@ stub RunOnceUrlCache
|
||||
@ stdcall RunOnceUrlCache(ptr ptr str long)
|
||||
@ stdcall SetUrlCacheConfigInfoA(ptr long)
|
||||
@ stdcall SetUrlCacheConfigInfoW(ptr long)
|
||||
@ stdcall SetUrlCacheEntryGroup(str long int64 ptr long ptr) SetUrlCacheEntryGroupA
|
||||
|
|
Loading…
Reference in a new issue