curl 编译
下载
下载编译好的dll
https://download.csdn.net/download/zhangxuechao_/10977255
使用
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if (curl)
{
curl_easy_setopt(curl, CURLOPT_URL, "www.baidu.com");
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}