是否每个使用任何依赖于 VC++9 运行时的应用程序都需要嵌入清单?
我不明白这篇关于 R6034 的文章说的是什么。看起来它声明每个依赖于 VC++9 运行时的应用程序都必须有一个清单。
现在我们有一个 DLL 发送给客户,它依赖于 VC++9 运行时并嵌入了清单。是否每个使用我们的 DLL 的应用程序也需要嵌入一个清单?
I don't get what this article on R6034 says. Looks like it states that every application dependent on VC++9 runtime must have a manifest.
Now we have a DLL that we ship to customers, that depends on VC++9 runtime and has a manifest embedded. Does every application using our DLL also need to have a manifest embedded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您的客户不需要清单。加载程序处理它加载的每个图像的清单...因此,如果您的 DLL 有清单,则无论您的 DLL 如何加载,它都将被正确解析/应用。
No, your customers do not need manifests. The loader deals with manifests for every image it loads... so if your DLL has a manifest it will be parsed/applied properly, regardless of how your DLL is loaded.