stdafx.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently,
  3. // but are changed infrequently
  4. #pragma once
  5. #ifndef _SECURE_ATL
  6. #define _SECURE_ATL 1
  7. #endif
  8. #ifndef VC_EXTRALEAN
  9. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  10. #endif
  11. // Modify the following defines if you have to target a platform prior to the ones specified below.
  12. // Refer to MSDN for the latest info on corresponding values for different platforms.
  13. #ifndef WINVER // Allow use of features specific to Windows XP or later.
  14. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
  15. #endif
  16. #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
  17. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
  18. #endif
  19. #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
  20. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  21. #endif
  22. #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
  23. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
  24. #endif
  25. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  26. // turns off MFC's hiding of some common and often safely ignored warning messages
  27. #define _AFX_ALL_WARNINGS
  28. #include <afxwin.h> // MFC core and standard components
  29. #include <afxext.h> // MFC extensions
  30. #include <afxdisp.h> // MFC Automation classes
  31. #include <strsafe.h>
  32. #ifndef _AFX_NO_OLE_SUPPORT
  33. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  34. #endif
  35. #ifndef _AFX_NO_AFXCMN_SUPPORT
  36. #include <afxcmn.h> // MFC support for Windows Common Controls
  37. #endif // _AFX_NO_AFXCMN_SUPPORT
  38. #ifdef _UNICODE
  39. #if defined _M_IX86
  40. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  41. #elif defined _M_IA64
  42. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  43. #elif defined _M_X64
  44. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  45. #else
  46. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  47. #endif
  48. #endif