stdafx.h
上传用户:hbzxgg2
上传日期:2009-03-28
资源大小:291k
文件大小:2k
源码类别:

Windows Mobile

开发平台:

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. #pragma comment(linker, "/nodefaultlib:libc.lib")
  6. #pragma comment(linker, "/nodefaultlib:libcd.lib")
  7. // NOTE - this is value is not strongly correlated to the Windows CE OS version being targeted
  8. #define WINVER _WIN32_WCE
  9. #ifndef VC_EXTRALEAN
  10. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  11. #endif
  12. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  13. #ifdef _CE_DCOM
  14. #define _ATL_APARTMENT_THREADED
  15. #endif
  16. // turns off MFC's hiding of some common and often safely ignored warning messages
  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 core and standard components
  23. #include <afxext.h>         // MFC extensions
  24. #ifndef _AFX_NO_OLE_SUPPORT
  25. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  26. #endif
  27. #include <afxdisp.h>        // MFC Automation classes
  28. #ifndef _AFX_NO_AFXCMN_SUPPORT
  29. #include <afxcmn.h> // MFC support for Windows Common Controls
  30. #endif // _AFX_NO_AFXCMN_SUPPORT
  31. #include <afxsock.h> // MFC socket extensions
  32. #ifndef __WS2BTH__H
  33. #include <ws2bth.h>  //蓝牙
  34. #endif
  35. #if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
  36. #ifndef _DEVICE_RESOLUTION_AWARE
  37. #define _DEVICE_RESOLUTION_AWARE
  38. #endif
  39. #endif
  40. #ifdef _DEVICE_RESOLUTION_AWARE
  41. #include "DeviceResolutionAware.h"
  42. #endif
  43. #ifdef SHELL_AYGSHELL
  44. #include <aygshell.h>
  45. #pragma comment(lib, "aygshell.lib") 
  46. #endif // SHELL_AYGSHELL
  47. #if (_WIN32_WCE < 0x500) && ( defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) )
  48. #pragma comment(lib, "ccrtrtti.lib")
  49. #ifdef _X86_
  50. #if defined(_DEBUG)
  51. #pragma comment(lib, "libcmtx86d.lib")
  52. #else
  53. #pragma comment(lib, "libcmtx86.lib")
  54. #endif
  55. #endif
  56. #endif
  57. #include <altcecrt.h>
  58. #include "Arithmetic.h"
  59. #include "DateTime.h"
  60. #include "DirFile.h"
  61. #include "Log.h"
  62. #include "OSRelate.h"
  63. #include "String.h"
  64. #include "UIHandle.h"