Changelog: dlls/wininet/wininet.spec, dlls/wininet/urlcache.c: Some UrlCache stubs -- Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- Index: wine/dlls/wininet/wininet.spec =================================================================== RCS file: /home/wine/wine/dlls/wininet/wininet.spec,v retrieving revision 1.35 diff -u -r1.35 wininet.spec --- wine/dlls/wininet/wininet.spec 21 Apr 2003 23:24:46 -0000 1.35 +++ wine/dlls/wininet/wininet.spec 26 Apr 2003 22:42:40 -0000 @@ -51,12 +51,12 @@ @ stub FtpRenameFileW @ stdcall FtpSetCurrentDirectoryA(ptr str) @ stdcall FtpSetCurrentDirectoryW(ptr wstr) -@ stub GetUrlCacheConfigInfoA -@ stub GetUrlCacheConfigInfoW +@ stdcall GetUrlCacheConfigInfoA(ptr ptr long) GetUrlCacheConfigInfoA +@ stdcall GetUrlCacheConfigInfoW(ptr ptr long) GetUrlCacheConfigInfoW @ stdcall GetUrlCacheEntryInfoA(str ptr long) @ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long) @ stdcall GetUrlCacheEntryInfoExW(wstr ptr ptr wstr ptr ptr long) -@ stub GetUrlCacheEntryInfoW +@ stdcall GetUrlCacheEntryInfoW(wstr ptr long) @ stub GetUrlCacheHeaderData @ stub GopherCreateLocatorA @ stub GopherCreateLocatorW Index: wine/dlls/wininet/urlcache.c =================================================================== RCS file: /home/wine/wine/dlls/wininet/urlcache.c,v retrieving revision 1.7 diff -u -r1.7 urlcache.c --- wine/dlls/wininet/urlcache.c 31 Mar 2003 23:58:27 -0000 1.7 +++ wine/dlls/wininet/urlcache.c 26 Apr 2003 22:42:40 -0000 @@ -115,6 +115,19 @@ } /*********************************************************************** + * GetUrlCacheEntryInfoW (WININET.@) + * + */ +BOOL WINAPI GetUrlCacheEntryInfoW(LPCWSTR lpszUrl, + LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntry, + LPDWORD lpCacheEntrySize) +{ + FIXME("(%s) stub\n",debugstr_w(lpszUrl)); + SetLastError(ERROR_FILE_NOT_FOUND); + return FALSE; +} + +/*********************************************************************** * GetUrlCacheEntryInfoExA (WININET.@) * */ @@ -147,5 +160,23 @@ { FIXME(" url=%s, flags=%ld\n",debugstr_w(lpszUrl),dwFlags); INTERNET_SetLastError(ERROR_FILE_NOT_FOUND); + return FALSE; +} +/*********************************************************************** + * GetUrlCacheConfigInfoA (WININET.@) + * + * CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google + */ + +BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask) +{ + FIXME("\n"); + INTERNET_SetLastError(ERROR_INVALID_PARAMETER); + return FALSE; +} +BOOL GetUrlCacheConfigInfoW(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask) +{ + FIXME("\n"); + INTERNET_SetLastError(ERROR_INVALID_PARAMETER); return FALSE; }