wininet: add a stub for RunOnceUrlCache

Austin English austinenglish at gmail.com
Tue Nov 1 13:14:16 CDT 2011


http://bugs.winehq.org/show_bug.cgi?id=28956

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c
index cec5bbb..f28893f 100644
--- a/dlls/wininet/urlcache.c
+++ b/dlls/wininet/urlcache.c
@@ -3925,3 +3925,14 @@ 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 szcmd, int cmdshow)
+{
+    FIXME("(%p, %p, %s, %d): stub\n", hwnd, hinst, debugstr_a(szcmd), cmdshow);
+    return 0;
+}
+
diff --git a/dlls/wininet/wininet.spec b/dlls/wininet/wininet.spec
index 82b0d7d..2773d4b 100644
--- a/dlls/wininet/wininet.spec
+++ b/dlls/wininet/wininet.spec
@@ -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


More information about the wine-patches mailing list