source: trunk/Utilities/Miscellaneous/AtlChildDialog/stdafx.h @ 157

Last change on this file since 157 was 157, checked in by roman, 11 years ago
File size: 1.3 KB
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2012-2013
3// Created by Roman Ryltsov roman@alax.info
4
5#pragma once
6
7// Change these values to use different versions
8#define WINVER          0x0500
9#define _WIN32_WINNT    0x0501
10#define _WIN32_IE       0x0501
11#define _RICHEDIT_VER   0x0200
12
13#include <atlbase.h>
14#include <atlapp.h>
15
16extern CAppModule _Module;
17
18#include <atlwin.h>
19
20#if defined _M_IX86
21  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
22#elif defined _M_IA64
23  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
24#elif defined _M_X64
25  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
26#else
27  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
28#endif
Note: See TracBrowser for help on using the repository browser.