Skip to content

Instantly share code, notes, and snippets.

@TheEpicFace007
Created March 4, 2021 17:23
Show Gist options
  • Save TheEpicFace007/9e801ab51f35c308647c57879d1575b8 to your computer and use it in GitHub Desktop.
Save TheEpicFace007/9e801ab51f35c308647c57879d1575b8 to your computer and use it in GitHub Desktop.
Have flat designed icon on message box and more on windows c++
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment