wininet: Fix error return code in FindFirstUrlCacheEntryW() stub.

oldstable
Johannes Stezenbach 2007-12-22 23:29:35 +01:00 committed by Alexandre Julliard
parent 7e18416e80
commit a3ae419594
1 changed files with 1 additions and 0 deletions

View File

@ -2796,6 +2796,7 @@ INTERNETAPI HANDLE WINAPI FindFirstUrlCacheEntryW(LPCWSTR lpszUrlSearchPattern,
LPINTERNET_CACHE_ENTRY_INFOW lpFirstCacheEntryInfo, LPDWORD lpdwFirstCacheEntryInfoBufferSize)
{
FIXME("(%s, %p, %p): stub\n", debugstr_w(lpszUrlSearchPattern), lpFirstCacheEntryInfo, lpdwFirstCacheEntryInfoBufferSize);
SetLastError(ERROR_FILE_NOT_FOUND);
return 0;
}