FindNextUrlCacheGroup

This function retrieves the next cache group in a cache group enumeration started by FindFirstUrlCacheGroup.

BOOL FindNextUrlCacheGroup(
  HANDLE hFind,
  GROUPID* lpGroupId,
  LPVOID lpReserved
);

Parameters

  • hFind
    [in] Valid cache group enumeration handle returned by FindFirstUrlCacheGroup.
  • lpGroupId
    [out] Pointer to a GROUPID variable that contains the cache group identification.
  • lpReserved
    [in, out] Reserved. Must be set to NULL.

Return Values

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

Remarks

When the enumeration is complete, call FindCloseUrlCache to close the handle.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Wininet.h.
Link Library: Wininet.lib.

See Also

WinInet Functions

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.