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);
}
posted @ 2019-02-26 20:33  thomas_blog  阅读(195)  评论(0编辑  收藏  举报