stdafx.h 825 B

123456789101112131415161718192021222324252627282930313233
  1. // stdafx.h : 标准系统包含文件的包含文件,
  2. // 或是常用但不常更改的项目特定的包含文件
  3. //
  4. #pragma once
  5. #include <iostream>
  6. #include <tchar.h>
  7. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将为显式的
  8. #ifndef VC_EXTRALEAN
  9. #define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
  10. #endif
  11. #include <afx.h>
  12. #include <afxwin.h> // MFC 核心组件和标准组件
  13. #include <afxext.h> // MFC 扩展
  14. #include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
  15. #ifndef _AFX_NO_AFXCMN_SUPPORT
  16. #include <afxcmn.h> // MFC 对 Windows 公共控件的支持
  17. #endif // _AFX_NO_AFXCMN_SUPPORT
  18. // TODO: 在此处引用程序要求的附加头文件
  19. #include "Mtverify.h"
  20. #include <iostream>
  21. #include <tchar.h>
  22. #include <windows.h>
  23. // TODO: 在此处引用程序要求的附加头文件
  24. #include "Log4C.h"
  25. #pragma comment(lib,"Log4C.lib" )