为 Firefox 可访问性编译 .IDL 文件后出错

发布于 2024-09-17 10:56:19 字数 447 浏览 11 评论 0原文

我在使用 Firefox MSAA () 时遇到了一个非常烦人的问题。我尝试从 cmd 编译 IDL 文件,但失败了。然后我将其添加到项目中并运行构建。 VS 编译接口文件后,有两个 C 文件 - ISimpleDOMDocument_h.h 和 ISimpleDOMDocument_i.c 我将它们添加到项目中。但现在我无法构建,因为这样的错误

错误 C1853: 'Debug\TestProj.pch' 预编译头文件来自以前版本的编译器,或者预编译头是 C++ 并且您正在从 C 使用它(或者反之亦然)反之亦然) d:\projects\testproj\testproj\isimpledomdocument_i.c

有任何线索吗?

I've encountered a very annoying problem while working with Firefox MSAA (). I tried to compile IDL file from cmd but it failed. Then I added it to the project and ran build. After VS compiled interface file there were two C files - ISimpleDOMDocument_h.h and ISimpleDOMDocument_i.c I added those to the project. But now I cant build because of such error

error C1853: 'Debug\TestProj.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa) d:\projects\testproj\testproj\isimpledomdocument_i.c

Any clues?

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

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

发布评论

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

评论(1

原谅我要高飞 2024-09-24 10:56:20

或者预编译头是 C++ 并且您正在从 C 使用它

这就是您的问题。不知道你是如何进入这个 pickle 的,mumble_i.c 文件是由 MIDL 生成的,并且不应该包含 #include "stdafx.h" 指令。不要编辑该文件。在解决方案资源管理器窗口中右键单击它,属性,C/C++,预编译头,创建/使用=“不使用预编译头”。

or the precompiled header is C++ and you are using it from C

Which is your problem. Not sure how you got in this pickle, the mumble_i.c file is generated by MIDL and should not contain an #include "stdafx.h" directive. Don't edit the file. Right-click it in Solution Explorer window, Properties, C/C++, Precompiled Headers, Create/Use = "Not using Precompiled Headers".

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