stdafx.h
上传用户:ayxnkj
上传日期:2022-06-19
资源大小:11910k
文件大小:3k
源码类别:

搜索引擎

开发平台:

Visual C++

  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. #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. #ifdef _UNICODE
  38. #if defined _M_IX86
  39. #pragma comment(linker,"/manifestdependency:"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'"")
  40. #elif defined _M_IA64
  41. #pragma comment(linker,"/manifestdependency:"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'"")
  42. #elif defined _M_X64
  43. #pragma comment(linker,"/manifestdependency:"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'"")
  44. #else
  45. #pragma comment(linker,"/manifestdependency:"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"")
  46. #endif
  47. #endif