source: trunk/Utilities/Miscellaneous/TreeViewIcon/stdafx.h @ 937

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