#include <windows.h>
#include <lmcons.h>
#include <wininet.h>
#include <stdio.h>
#pragma comment(lib,"wininet.lib")
void
WalkCache ()
{
BYTE byBuffer[20480];
LPINTERNET_CACHE_ENTRY_INFO lpInfo = LPINTERNET_CACHE_ENTRY_INFO
(byBuffer);
DWORD dwSize = sizeof (byBuffer);;
lpInfo->dwStructSize = sizeof (INTERNET_CACHE_ENTRY_INFO);
HANDLE h;
BOOL bSuccess = TRUE;
for (h = FindFirstUrlCacheEntryEx (NULL, 0,
URLCACHE_FIND_DEFAULT_FILTER,
0, lpInfo, &dwSize, 0, 0, 0);
h && bSuccess;
bSuccess = FindNextUrlCacheEntryEx (h, lpInfo, &dwSize, 0, 0, 0))
{
dwSize = sizeof (byBuffer);
printf ("%s/n", lpInfo->lpszSourceUrlName);
} FindCloseUrlCache (h);
}
int
main (int argc, char **argv)
{
WalkCache ();
return 0;
}
Get All IE Info from win32 api
相關文章
- 023 Given an integer n. get the number of 0, 2, 4 from all the values from [0, n]
- get_data_from_yml
- Win32常用API講解Win32API
- [LeetCode] 317. Shortest Distance from All BuildingsLeetCodeUI
- LeetCode之All Paths From Source to Target(Kotlin)LeetCodeKotlin
- jedis異常:Could not get a resource from the pool
- How to get the exact duration of an audio file in js All In OneJS
- 【論文閱讀】CVPR2022: Learning from all vehicles
- 【rac故障】root.sh報錯Unable to get VIP info for new node
- win32 API程式設計之GDI繪圖Win32API程式設計繪圖
- redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the poolRedisclientException
- Win32 API CreateCompatibleDC 函式的相關應用Win32API函式
- [20201110]How to get the Data Guard broker configuration from a SQL query.txtSQL
- ImportError: cannot import name 'get_ora_doc' from partially initialized moduleImportErrorZed
- 使用 Win32 API 將原始資料傳送到印表機Win32API
- Promise.all API 的出錯處理PromiseAPI
- mysql 8 報錯 ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repositoryMySqlErrorAIStruct
- WIN32 API程式設計--列舉系統顯示器Win32API程式設計
- Unable to execute SonarScanner analysis: Fail to get bootstrap index from server: Host is unreachable(Host unreachable)AIbootIndexServer
- QEMU info
- Error response from daemon: Get "https://registry-1.docker.io/v2/": netErrorHTTPDocker
- Dynamics 365 Web API Set Values of all Data Types using Web API in Dynamics CRM Through C#WebAPIC#
- 微軟宣佈Win10 UWP API可用於Win32應用程式微軟Win10APIWin32
- GET和POST方式請求API介面資料返回API
- Excel匯入資料異常Cannot get a text value from a numeric cell解決辦法Excel
- redis 4.0 info詳解Redis
- Metasploit命令info使用技巧
- Python(logging.getLogger().info())Python
- account_sdk_source_info
- 計一次Win32 api程式顯示混亂問題的除錯經歷Win32API除錯
- PHP與Curl採用的GET,POST,JSON方式請求APIPHPJSONAPI
- 【C++】從零開始,只使用FFmpeg,Win32 API,實現一個播放器(二)C++Win32API播放器
- 【C++】從零開始,只使用FFmpeg,Win32 API,實現一個播放器(三)C++Win32API播放器
- 【C++】從零開始,只使用FFmpeg,Win32 API,實現一個播放器(一)C++Win32API播放器
- 一行程式碼解決各種IE相容問題,IE6,IE7,IE8,IE9,IE10行程IE9IE10
- WIN32 手動編譯Win32編譯
- ffmpeg # avformat_find_stream_infoORM
- Attribute GetCustomAttribute via method info of type
- docker in allDocker