FindNextUrlCacheEntryEx function
Finds the next cache entry in a cache enumeration started by the FindFirstUrlCacheEntryEx function.
Syntax
BOOL FindNextUrlCacheEntryEx( _In_ HANDLE hEnumHandle, _Inout_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved );
Parameters
- hEnumHandle [in]
-
Handle returned by FindFirstUrlCacheEntryEx, which started a cache enumeration.
- lpNextCacheEntryInfo [in, out]
-
Pointer to the INTERNET_CACHE_ENTRY_INFO structure that receives the cache entry information.
- lpcbEntryInfo [in, out]
-
Pointer to a variable that indicates the size of the buffer, in bytes.
- lpGroupAttributes
-
This parameter is reserved and must be NULL.
- lpcbGroupAttributes
-
This parameter is reserved and must be NULL.
- lpReserved
-
This parameter is reserved.
Return value
Returns TRUE if successful, or FALSE otherwise. To get specific error information, call GetLastError.
Remarks
Continue to call FindNextUrlCacheEntryEx until the last item in the cache is returned.
Like all other aspects of the WinINet API, this function cannot be safely called from within DllMain or the constructors and destructors of global objects.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
FindNextUrlCacheEntryExW (Unicode) and FindNextUrlCacheEntryExA (ANSI) |
See also