调整 MFC dll 以在 C++/CLI 包装器中使用
我发现从 CWinApp
派生我的 MFC 基类并为每个导出的方法使用 AFX_MANAGE_STATE(AfxGetStaticModuleState())
至关重要! (如果 MFC 是 dyn.linked)
我还想在 MFC dll constr 中使用指向外部本机 C++ 对象的指针(我应该使用扩展 dll - 但如何与 CLI 一起工作???)
有人有一个很好的例子来实现这种情况包装?!
谢谢并问候,
leon22
I have found out that it is essential to derive my base MFC class from CWinApp
and use AFX_MANAGE_STATE(AfxGetStaticModuleState())
for every exported method! (if MFC is dyn. linked)
I would like also using an pointer to external native C++ object in MFC dll constr (I should use extension dll - but how work this with CLI???)
Have someone a good example for doing this kind of wrapping ?!
Thanks and greets,
leon22
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你的问题是什么。您并不总是需要使用 AFX_MANAGE_STATE 宏,这取决于具体情况。什么是“MFC dll 构造”? “我应该使用扩展 dll”是什么意思? (我知道扩展 dll 是什么,但是在这种情况下“应该”是什么意思?)“这种包装”是什么意思?
I'm not sure what your question or your problem is. You don't always need to use the AFX_MANAGE_STATE macro, it depends on the circumstances. What's a 'MFC dll constr' ? What does 'I should use extension dll' mean? (I know what an extension dll is, but what do you mean by 'should' in this context?) What does 'this kind of wrapping' mean?