Contents Index Topic Contents | ||
Previous Topic: FindFirstUrlCacheEntryEx Next Topic: FindNextUrlCacheEntryEx |
FindNextUrlCacheEntry
BOOL FindNextUrlCacheEntry( IN HANDLE hEnumHandle, OUT LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, IN OUT LPWORD lpdwNextCacheEntryInfoBufferSize );Retrieves the next entry in the cache.
- Returns TRUE if successful, or FALSE otherwise. To get extended error information, call GetLastError. Possible error values include:
ERROR_INSUFFICIENT_BUFFER The size of lpNextCacheEntryInfo as specified by lpdwNextCacheEntryInfoBufferSize is not sufficient to contain all the information. The value returned in lpdwNextCacheEntryInfoBufferSize indicates the buffer size necessary to contain all the information. ERROR_NO_MORE_ITEMS The enumeration completed.
- hEnumHandle
- Enumeration handle obtained from a previous call to FindFirstUrlCacheEntry.
- lpNextCacheEntryInfo
- Address of an INTERNET_CACHE_ENTRY_INFO structure that receives information about the cache entry.
- lpdwNextCacheEntryInfoBufferSize
- Address of a variable that specifies the size of the lpNextCacheEntryInfo buffer. When the function returns, the variable contains the number of bytes copied to the buffer, or the required size of the buffer.
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.