C++:需要从 dll 发出 HTTP 请求 - 我从哪里开始?

发布于 2024-08-29 05:41:04 字数 105 浏览 10 评论 0原文

我尝试过使用curlib,但发现我的dll变得依赖于curlib.dll。我可以研究和使用其他方法吗?我只是想向网页发出请求。我的 dll 必须是独立的,以便它可以单独分发。

谢谢

I've tried using curllib, but find my dll becomes dependent on curllib.dll. Is there another method I can investigate and use? I simply want to make a request to a web page. My dll has to be independant so it can be distributed on its own.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剩一世无双 2024-09-05 05:41:04

libcurl 库既作为 DLL 又作为静态库 - 如果您不想依赖于 DLL,请与静态库链接 - 它称为 libcurl.a,可以在 libcurl Windows 发行版的 lib 目录中找到。请注意,您可能还需要显式链接此目录中的部分或全部其他库,具体取决于您的代码实际执行的操作。

The libcurl library comes as both a DLL and as a static library - if you don't want dependencies on the DLL, link with the static library - it's called libcurl.a, and can be found in the lib directory of the libcurl Windows distribution. Note that you may also need to explicitly link against some or all of the other libraries in this directory, depending on what your code actually does.

究竟谁懂我的在乎 2024-09-05 05:41:04

对于任何处于类似情况的人,我设法在最新的curl发行版中编译libcurl Visual Studio项目,并将运行时库设置为多线程dll。我想除了输出文件之外,其他所有内容都保持不变(请注意调试/发布)。一旦用我的 dll 编译了 lib,我注意到现在我的 dll 仅依赖于其他 3 个 dll。

  • IESHIMS.dll - 我用环境变量路径更新(程序文件(x86)/Internet Explorer
  • MSVCR90.DLL
  • GPSVC.DLL 修复了它。

我现在担心它是一个 Win7 64 位问题。至少我让我的 dll 在没有 libcurl 依赖的情况下工作, 正确的!?

For anyone in a similar situation I managed to compile the libcurl visual studio project in the latest curl distribution with Runtime library set to Multi-threaded dll. I think I left everything else the same apart from the output files (debug/release respectfully). Once the lib compiled with my dll I noticed now my dll is only dependant on 3 other dlls.

  • IESHIMS.dll - which I fixed with an environment variable path update (program files(x86)/Internet Explorer
  • MSVCR90.DLL
  • GPSVC.DLL.

I fear now its a Win7 64 bit issue. At least I got my dll working with no libcurl dependency, right!?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文