문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top