stdafx.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 // Specifies that the minimum required platform is Windows Vista.
  14. #define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
  15. #endif
  16. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
  17. #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
  18. #endif
  19. #ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
  20. #define _WIN32_WINDOWS 0x0501 // Change this to the appropriate value to target Windows Me or later.
  21. #endif
  22. #ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
  23. #define _WIN32_IE 0x0700 // 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. #ifndef _AFX_NO_OLE_SUPPORT
  32. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  33. #endif
  34. #ifndef _AFX_NO_AFXCMN_SUPPORT
  35. #include <afxcmn.h> // MFC support for Windows Common Controls
  36. #endif // _AFX_NO_AFXCMN_SUPPORT
  37. #include <imapi2.h>
  38. #include <imapi2error.h>
  39. #include <imapi2fs.h>
  40. #include <imapi2fserror.h>
  41. #include <shlwapi.h> // for SHCreateStreamOnFileEx
  42. #include <afx.h>
  43. #include <afxctl.h>
  44. #include <afxmt.h>
  45. #ifdef _UNICODE
  46. #if defined _M_IX86
  47. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  48. #elif defined _M_IA64
  49. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  50. #elif defined _M_X64
  51. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  52. #else
  53. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  54. #endif
  55. #endif