无法包含 winhttp.h(带有代码::blocks/mingw)c++

发布于 2024-08-31 18:16:12 字数 119 浏览 6 评论 0原文

我一直在尝试包含 winhttp.h 并且收到此错误:

Winhttp.h:没有这样的文件或目录

Mingw 没有它,我该如何添加它?

I've been trying to include winhttp.h and I get this error:

Winhttp.h: No such file or directory

Mingw doesn't have it, how would I add it?

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

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

发布评论

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

评论(3

我做我的改变 2024-09-07 18:16:12

您可以使用运行时动态链接来链接到直接选择您想要的功能。您不能使用 Windows SDK 附带的普通 winhttp.h,因为它包含 Microsoft 特定的功能。您还可以使用 Visual C++ 2010 Express Edition 进行编译,其中包含您想要的标头。

希望有帮助:)

You can use runtime dynamic linking to link to the function(s) you want directly. You can't use the plain winhttp.h that ships with the Windows SDK because it contains Microsoft-specific features. You could also compile with Visual C++ 2010 Express Edition which would include the header you want.

Hope that helps :)

盗琴音 2024-09-07 18:16:12

我已经从 Windows 复制了标头,并且通过添加以下内容可以正常工作:

#define __in
#define __out
#define __out_bcount(x)
#define __in_ecount(x)
#define __inout
#define __out_ecount_full_opt(x)
#define __in_opt
#define __out_data_source(x)
#include <winhttp.h>

希望这会有所帮助。

I have copied the header from windows and it worked fine with the following addition:

#define __in
#define __out
#define __out_bcount(x)
#define __in_ecount(x)
#define __inout
#define __out_ecount_full_opt(x)
#define __in_opt
#define __out_data_source(x)
#include <winhttp.h>

hope this helps.

開玄 2024-09-07 18:16:12
  1. 获取:
  2. dlltool -z winhttp.def --export-all-symbol winhttp.dll
  3. dlltool -k -d winhttp.def -l libwinhttp.a
  4. 链接您刚刚生成的 libwinhttp.a。
  1. GET: https://dev.eclipse.org/svnroot/technology/org.eclipse.higgins/trunk/app/org.eclipse.higgins.tcpserver/src/Third-party/VS2008/winhttp.h
  2. dlltool -z winhttp.def --export-all-symbol winhttp.dll
  3. dlltool -k -d winhttp.def -l libwinhttp.a
  4. Link against the libwinhttp.a you just generated.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文