wininet: add a stub for LoadUrlCacheContent

Austin English austinenglish at gmail.com
Wed Feb 13 14:27:34 CST 2013


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

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c
index afccda8..f77f3a8 100644
--- a/dlls/wininet/urlcache.c
+++ b/dlls/wininet/urlcache.c
@@ -4491,3 +4491,13 @@ void free_urlcache(void)
 
     URLCacheContainers_DeleteAll();
 }
+
+/***********************************************************************
+ *           LoadUrlCacheContent (WININET.@)
+ */
+BOOL WINAPI LoadUrlCacheContent(void)
+{
+    FIXME("stub!\n");
+    return FALSE;
+}
+
diff --git a/dlls/wininet/wininet.spec b/dlls/wininet/wininet.spec
index 5e21a40..3c4bf5a 100644
--- a/dlls/wininet/wininet.spec
+++ b/dlls/wininet/wininet.spec
@@ -215,7 +215,7 @@
 @ stdcall IsHostInProxyBypassList(long str long)
 @ stdcall IsUrlCacheEntryExpiredA(str long ptr)
 @ stdcall IsUrlCacheEntryExpiredW(wstr long ptr)
-@ stub LoadUrlCacheContent
+@ stdcall LoadUrlCacheContent()
 @ stub ParseX509EncodedCertificateForListBoxEntry
 @ stdcall PrivacyGetZonePreferenceW(long long ptr ptr ptr)
 @ stdcall PrivacySetZonePreferenceW(long long long wstr)
diff --git a/include/wininet.h b/include/wininet.h
index 51d9864..2ef5e51 100644
--- a/include/wininet.h
+++ b/include/wininet.h
@@ -1723,6 +1723,7 @@ BOOL WINAPI InternetGetConnectedStateExW(LPDWORD, LPWSTR, DWORD, DWORD);
 BOOL WINAPI InternetInitializeAutoProxyDll(DWORD);
 BOOL WINAPI DetectAutoProxyUrl(LPSTR, DWORD, DWORD);
 
+BOOL WINAPI LoadUrlCacheContent(void);
 #ifdef __cplusplus
 }
 #endif


More information about the wine-patches mailing list