XP 通用控件清单:processorArchitecture='x86' vs.processorArchitecture='*'

发布于 2024-12-03 19:13:54 字数 723 浏览 3 评论 0原文

有什么好处?

#pragma comment(linker, "/manifestdependency:\"type='win32'"  \
     "name='Microsoft.Windows.Common-Controls'"               \
     "version='6.0.0.0'"                                      \
     "processorArchitecture='x86'"                            \
     "publicKeyToken='6595b64144ccf1df' language='*'\"")

使用“说”而不是

#pragma comment(linker, "/manifestdependency:\"type='win32'"  \
     "name='Microsoft.Windows.Common-Controls'"               \
     "version='6.0.0.0'"                                      \
     "processorArchitecture='*'"                              \
     "publicKeyToken='6595b64144ccf1df' language='*'\"")

在指定清单时

What's the advantage of saying

#pragma comment(linker, "/manifestdependency:\"type='win32'"  \
     "name='Microsoft.Windows.Common-Controls'"               \
     "version='6.0.0.0'"                                      \
     "processorArchitecture='x86'"                            \
     "publicKeyToken='6595b64144ccf1df' language='*'\"")

instead of

#pragma comment(linker, "/manifestdependency:\"type='win32'"  \
     "name='Microsoft.Windows.Common-Controls'"               \
     "version='6.0.0.0'"                                      \
     "processorArchitecture='*'"                              \
     "publicKeyToken='6595b64144ccf1df' language='*'\"")

when specifing a manifest?

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

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

发布评论

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

评论(1

薄凉少年不暖心 2024-12-10 19:13:54

使用 x86 意味着如果您面向 64 位平台,则无法使用清单。我想说这是一个缺点。我认为使用 * 更好。

Using x86 means that the manifest cannot be used if you target 64 bit platforms. I'd say that this was a disadvantage. I think using * is better.

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