Group: Internet Functions (WinInet) - Library: wininet
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
BOOL FindNextUrlCacheEntry(
HANDLE hEnumHandle,
LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo,
LPWORD lpdwNextCacheEntryInfoBufferSize
); DECLARE INTEGER FindNextUrlCacheEntry IN wininet;
INTEGER hEnumHandle,;
LONG lpNextCacheEntryInfo,;
LONG @ lpdwNextCacheEntryInfoBufferSize
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.
Returns TRUE if successful, or FALSE otherwise.
Home