Click to return to the Networking, Protocols     
FindNextUrlCacheEntry Fun...     FindNextUrlCacheGroup Fun...     Persistent URL Cache Func...    
Web Workshop  |  Networking, Protocols & Data Formats

FindNextUrlCacheEntryEx Function


Finds the next cache entry in a cache enumeration started by the FindFirstUrlCacheEntryEx function.

Syntax

BOOL FindNextUrlCacheEntryEx(
    IN HANDLE hEnumHandle,
    OUT LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo,
    IN OUT LPDWORD lpdwFirstCacheEntryInfoBufferSize,
    OUT LPVOID lpReserved,
    IN OUT LPDWORD pcbReserved2,
    IN LPVOID lpReserved3
);

The actual syntax of this function varies between its ANSI and Unicode implementations. For more information, see Win32 Internet Functions Syntax.

Parameters

hEnumHandle
Handle returned by FindFirstUrlCacheEntryEx, which started a cache enumeration.
lpFirstCacheEntryInfo
Address of the buffer to hold the INTERNET_CACHE_ENTRY_INFO structure in which the cache entry information will be stored.
lpdwFirstCacheEntryInfoBufferSize
Address of an unsigned long integer value that indicates the size of the buffer in TCHAR.
lpReserved
Reserved. Must be set to NULL.
pcbReserved2
Reserved. Must be set to NULL.
lpReserved3
Reserved. Must be set to NULL.

Return Value

Returns TRUE if successful, or FALSE otherwise. To get specific error information, call GetLastError.

Remarks

At the end of the enumeration, the application should call FindCloseUrlCache.

Function Information

Windows NT Use version 4.0. Implemented as ANSI and Unicode functions.
Windows Use Windows 95 and later. Implemented as ANSI and Unicode functions.
Header Wininet.h
Import library Wininet.lib
Minimum availability Internet Explorer 4.0 (ANSI only), 5 (ANSI and Unicode)

Windows CE

Windows CE Use version 2.12 and later. Implemented as ANSI and Unicode functions.
Minimum availability Internet Explorer 4.0

See Also

Microsoft Win32 Internet Functions Overview, Caching, Microsoft Win32 Internet Functions Reference, Persistent URL Cache Functions



Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.