stdafx.h
上传用户:wty58716
上传日期:2022-06-16
资源大小:3084k
文件大小:2k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. // stdafx.h : 标准系统包含文件的包含文件,
  2. // 或是经常使用但不常更改的
  3. //  特定于项目的包含文件
  4. #pragma once
  5. #pragma comment(linker, "/nodefaultlib:libc.lib")
  6. #pragma comment(linker, "/nodefaultlib:libcd.lib")
  7. // 注意 - 这个值与作为目标的 Windows CE OS 版本的关联性并不强
  8. #define WINVER _WIN32_WCE
  9. #ifndef VC_EXTRALEAN
  10. #define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
  11. #endif
  12. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  13. #ifdef _CE_DCOM
  14. #define _ATL_APARTMENT_THREADED
  15. #endif
  16. // 关闭 MFC 对某些常见但经常可放心忽略的警告消息的隐藏
  17. #define _AFX_ALL_WARNINGS
  18. #include <ceconfig.h>
  19. #if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
  20. #define SHELL_AYGSHELL
  21. #endif
  22. #include <afxwin.h>         // MFC 核心组件和标准组件
  23. #include <afxext.h>         // MFC 扩展
  24. #ifndef _AFX_NO_OLE_SUPPORT
  25. #include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
  26. #endif
  27. #ifndef _AFX_NO_AFXCMN_SUPPORT
  28. #include <afxcmn.h> // MFC 对 Windows 公共控件的支持
  29. #endif // _AFX_NO_AFXCMN_SUPPORT
  30. #if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
  31. #ifndef _DEVICE_RESOLUTION_AWARE
  32. #define _DEVICE_RESOLUTION_AWARE
  33. #endif
  34. #endif
  35. #ifdef _DEVICE_RESOLUTION_AWARE
  36. #include "DeviceResolutionAware.h"
  37. #endif
  38. #ifdef SHELL_AYGSHELL
  39. #include <aygshell.h>
  40. #pragma comment(lib, "aygshell.lib") 
  41. #endif // SHELL_AYGSHELL
  42. #if (_WIN32_WCE < 0x500) && ( defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) )
  43. #pragma comment(lib, "ccrtrtti.lib")
  44. #ifdef _X86_
  45. #if defined(_DEBUG)
  46. #pragma comment(lib, "libcmtx86d.lib")
  47. #else
  48. #pragma comment(lib, "libcmtx86.lib")
  49. #endif
  50. #endif
  51. #endif
  52. #include <altcecrt.h>