添加 #include <boost/thread/mutex.hpp>破坏了我的 ActiveX 控件?

2023-07-02C/C++开发问题
3

本文介绍了添加 #include <boost/thread/mutex.hpp>破坏了我的 ActiveX 控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在 ActiveX 控件中使用时 boost::mutex 标头是否存在已知问题?
(Boost 版本 v1.39)

如果我在 Visual Studio 2008 中创建一个名为 "DefaultOCXControl"MFC ActiveX Control 项目,那么我可以构建它,该控件将自身注册为构建的一部分,并且可以按照您的预期插入到 ActiveX 测试容器中.一切都很好.

If I create an MFC ActiveX Control project in Visual Studio 2008 called "DefaultOCXControl" then I can build it, the control registers itself as part of the build, and can be inserted into the ActiveX Test Container as you would expect. All good.

如果我再添加这一行:

#include <boost/thread/mutex.hpp>

在我的 DefaultOCXControlCtrl.h 文件的顶部并重新构建:构建结束时的注册步骤失败:

at the top of my DefaultOCXControlCtrl.h file and rebuild: the registration step at the end of the build fails with:

调试断言失败!
程序:C:Windowssystem32 egsvr32.exe
文件:f:ddvctoolsvc7libsshipatlmfcsrcmfcdllinit.cpp
行:587

Debug Assertion Failed!
Program: C:Windowssystem32 egsvr32.exe
File: f:ddvctoolsvc7libsshipatlmfcsrcmfcdllinit.cpp
Line: 587

违规断言如下所示:

void AFXAPI AfxCoreInitModule()
{
    ASSERT(AfxGetModuleState() != AfxGetAppModuleState());
    ...

现在尝试将控件插入 ActiveX 测试容器会产生相同的消息.如果我删除该行并重新构建,那么一切都很好 - 所以它肯定是该头文件中的某些内容导致了问题.

Attempting to insert the control into the ActiveX Test Container now results in the same message. If I remove the line and rebuild then everything is fine - so it definitely seems to be something in that header file that causes the issue.

推荐答案

您是否尝试过动态链接 boost::thread(定义 BOOST_THREAD_DYN_LINK)?

Have you tried linking boost::thread dynamically (define BOOST_THREAD_DYN_LINK)?

我在将 boost::thread 与混合 C++/.NET 项目一起使用时遇到了这种问题,并且只动态链接 boost::thread 是解决方案(这里一个可能的解释:http://article.gmane.org/gmane.comp.lib.boost.user/22617/match=clr)

I had this kind of problems when using boost::thread with a mixed C++/.NET project and linking just boost::thread dynamically was the solution (here a possible explanation: http://article.gmane.org/gmane.comp.lib.boost.user/22617/match=clr)

这篇关于添加 #include <boost/thread/mutex.hpp>破坏了我的 ActiveX 控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&amp;()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6