Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.42 KB

File metadata and controls

53 lines (37 loc) · 1.42 KB

Home

Function name : FindNextUrlCacheEntry

Group: Internet Functions (WinInet) - Library: wininet


Retrieves the next entry in the Internet cache.


Code examples:

How to enumerate cookies and URL History entries in the cache of the local computer
How to delete IE cookies, clear IE history and delete files in Temporary Internet Files directory

Declaration:

BOOL FindNextUrlCacheEntry(
  HANDLE hEnumHandle,
  LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo,
  LPWORD lpdwNextCacheEntryInfoBufferSize
);  

FoxPro declaration:

DECLARE INTEGER FindNextUrlCacheEntry IN wininet;
	INTEGER hEnumHandle,;
	LONG    lpNextCacheEntryInfo,;
	LONG  @ lpdwNextCacheEntryInfoBufferSize
  

Parameters:

hEnumHandle [in] Handle to the enumeration obtained from a previous call to FindFirstUrlCacheEntry.

lpNextCacheEntryInfo [out] Pointer to an INTERNET_CACHE_ENTRY_INFO structure that receives information about the cache entry.

lpdwNextCacheEntryInfoBufferSize [in, out] Pointer to a variable that specifies the size of the lpNextCacheEntryInfo buffer.


Return value:

Returns TRUE if successful, or FALSE otherwise.