stdafx.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // stdafx.h : 标准系统包含文件的包含文件,
  2. // 或是经常使用但不常更改的
  3. // 项目特定的包含文件
  4. #pragma once
  5. #ifndef VC_EXTRALEAN
  6. #define VC_EXTRALEAN // 从 Windows 标头中排除不常使用的资料
  7. #endif
  8. // 如果您必须使用下列所指定的平台之前的平台,则修改下面的定义。
  9. // 有关不同平台的相应值的最新信息,请参考 MSDN。
  10. #ifndef WINVER // 允许使用 Windows 95 和 Windows NT 4 或更高版本的特定功能。
  11. #define WINVER 0x0501 //为 Windows98 和 Windows 2000 及更新版本改变为适当的值。
  12. #endif
  13. #ifndef _WIN32_WINNT // 允许使用 Windows NT 4 或更高版本的特定功能。
  14. #define _WIN32_WINNT 0x0501 //为 Windows98 和 Windows 2000 及更新版本改变为适当的值。
  15. #endif
  16. #ifndef _WIN32_WINDOWS // 允许使用 Windows 98 或更高版本的特定功能。
  17. #define _WIN32_WINDOWS 0x0501 //为 Windows Me 及更新版本改变为适当的值。
  18. #endif
  19. #ifndef _WIN32_IE // 允许使用 IE 4.0 或更高版本的特定功能。
  20. #define _WIN32_IE 0x0501 //为 IE 5.0 及更新版本改变为适当的值。
  21. #endif
  22. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  23. // 关闭 MFC 对某些常见但经常被安全忽略的警告消息的隐藏
  24. #define _AFX_ALL_WARNINGS
  25. #define WIN32_LEAN_AND_MEAN
  26. #include <afxwin.h> // MFC 核心和标准组件
  27. #include <afxext.h> // MFC 扩展
  28. #include <afxdisp.h> // MFC 自动化类
  29. #include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
  30. #ifndef _AFX_NO_AFXCMN_SUPPORT
  31. #include <afxcmn.h> // Windows 公共控件的 MFC 支持
  32. #endif // _AFX_NO_AFXCMN_SUPPORT
  33. #include <afxtempl.h>
  34. #include "sizecbar.h"
  35. #include "DockPageBar.h"
  36. #include "AutoHideBar.h"
  37. #include "kernel.h"
  38. #pragma warning(disable:4267)
  39. #pragma warning(disable:4311)
  40. #pragma warning(disable:4312)
  41. #pragma warning(disable:4244)
  42. #include "Const.h"
  43. #include "resource.h"
  44. #include "Global.h"
  45. #include "MTVERIFY.H"
  46. #include <mmsystem.h>
  47. #pragma comment(lib,"winmm.lib")//导入声音头文件库
  48. #define ULONG_PTR ULONG
  49. #include "gdiplus.h"
  50. using namespace Gdiplus;
  51. #pragma comment(lib, "gdiplus.lib")
  52. // vs2015以上版本使用:odbccp32.lib(dllload.obj) : error LNK2019: 无法解析的外部符号 __vsnwprintf_s,该符号在函数 _StringCchPrintfW 中被引用;
  53. //#if _MSC_VER >= 1910 // 2015;
  54. #if _MSC_VER >= 1800 //2013;
  55. #pragma comment(lib, "legacy_stdio_definitions.lib")
  56. #endif