Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.12 KB

FindNextUrlCacheGroup.md

File metadata and controls

52 lines (36 loc) · 1.12 KB

Home

Function name : FindNextUrlCacheGroup

Group: Internet Functions (WinInet) - Library: wininet


Retrieves the next cache group in a cache group enumeration started by FindFirstUrlCacheGroup.


Code examples:

How to enumerate cookies and URL History entries in the cache of the local computer

Declaration:

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

FoxPro declaration:

DECLARE INTEGER FindNextUrlCacheGroup IN wininet;
	INTEGER   hFind,;
	STRING  @ lpGroupId,;
	INTEGER @ lpReserved
  

Parameters:

hFind [in] Handle to the cache group enumeration handle, which is returned by FindFirstUrlCacheGroup.

lpGroupId [out] Pointer to a variable that receives the cache group identifier.

lpReserved [in, out] Reserved. Must be NULL.


Return value:

Returns TRUE if successful, or FALSE otherwise.