我使用 curl 运行了一些 gui,我在vs 2005中成功地处理了它们。但是当我迁移到vs2012时,curl_easy_perform 的响应总是 CURLE_GOT_NOTHING。
if(curl)
{
curl_easy_setopt(curl, CURLOPT_URL,URL);
curl_easy_setopt(curl, CURLOPT_POST, 1);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, ZoomArg);
res =curl_easy_perform(curl);
}
PS:
- 相同的代码在 VS2005 中对我来说效果很好。
- 我在 2012 年以发布模式构建 CURL。
- 正在执行 URL 中的 CGI(实际上是在与 CAM 对话)