博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ AFX_MANAGE_STATE(AfxGetStaticModuleState())的作用
阅读量:6389 次
发布时间:2019-06-23

本文共 974 字,大约阅读时间需要 3 分钟。

AFX_MANAGE_STATE(AfxGetStaticModuleState())的作用:用于模块切换时的状态保护,

1.AfxGetStaticModuleState()指向当前模块状态;

2.当前函数调用结束后原模块的状态自动被恢复;

3.用于DLL中所调用MFC函数、类、资源时的模块状态切换;

[MSDN]

By default, MFC uses the resource handle of the main application to load the resource template. If you have an exported function in a DLL, such as one that launches a dialog box in the DLL, this template is actually stored in the DLL module. You need to switch the module state for the correct handle to be used. You can do this by adding the following code to the beginning of the function:

AFX_MANAGE_STATE(AfxGetStaticModuleState( ));

This swaps the current module state with the state returned from AfxGetStaticModuleState until the end of the current scope

也就是說,並不是每一个dll的输出函数前都要调用它,只有在要輸出對話框等用到資源時要調用!

dll中资源是共享的用了这个函数的防止不同的进程修改资源产生错误!

缺省情况下MFC使用主应用程序的资源句柄来载入资源模板,而DLL中的资源模板是存在于DLL模板中,因此要使用这一语句切换到

本文转自Work Hard Work Smart博客园博客,原文链接:http://www.cnblogs.com/linlf03/archive/2011/11/16/2251318.html,如需转载请自行联系原作者

你可能感兴趣的文章
腾讯云工业互联网助力平台发布 推动制造业“数字化”蝶变
查看>>
IBM发布Open Liberty 18.0.0.4,支持MicroProfile 2.1和反应性扩展框架
查看>>
微软开发团队的DevOps实践启示
查看>>
程序员难逃二八法则,如何晋升为头部20%玩家?
查看>>
AWS开源Firecracker,一种运行多租户容器服务的新虚拟化技术
查看>>
从Jenkins迁移到Jenkins X:一场持续交付之旅\n
查看>>
什么数据库最适合数据分析师
查看>>
以演进式的架构来让系统为变化做好准备
查看>>
Elixir 1.2带来多项功能增强和性能提升
查看>>
不仅仅是手机,MWC现全球首例 5G NR 商用部署
查看>>
CEO换人、IPO延期,比特大陆艰难转型路漫漫
查看>>
eBay是如何进行大数据集元数据发现的
查看>>
Spark发布1.3.0版本
查看>>
Android自定义View:MeasureSpec的真正意义与View大小控制
查看>>
Zip Slip目录遍历漏洞已影响多个Java项目
查看>>
比特币寒冬中,你更应该关注企业区块链!
查看>>
SQL Server 2016:实时查询统计
查看>>
用WinForm/WPF代码来为.NET Core 3.0功能投票
查看>>
JUnit 5 – 早期试用体验 – 第2篇
查看>>
Apache TinkerPop毕业成为顶级项目
查看>>