source: trunk/Utilities/Miscellaneous/DispEventSample03/stdafx.h @ 384

Last change on this file since 384 was 328, checked in by roman, 10 years ago
File size: 1.6 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#define _ATL_APARTMENT_THREADED
15
16#include <atlbase.h>
17
18#undef _SYSINFOAPI_H_
19#include <atlapp.h>
20#define _SYSINFOAPI_H_
21
22extern CServerAppModule _Module;
23
24// This is here only to tell VC7 Class Wizard this is an ATL project
25#ifdef ___VC7_CLWIZ_ONLY___
26CComModule
27CExeModule
28#endif
29
30#include <atlcom.h>
31#include <atlhost.h>
32#include <atlwin.h>
33#include <atlctl.h>
34
35#if defined _M_IX86
36  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
37#elif defined _M_IA64
38  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
39#elif defined _M_X64
40  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
41#else
42  #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
43#endif
Note: See TracBrowser for help on using the repository browser.