stdafx.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:2k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. #pragma once
  5. #ifndef VC_EXTRALEAN
  6. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  7. #endif
  8. // Modify the following defines if you have to target a platform prior to the ones specified below.
  9. // Refer to MSDN for the latest info on corresponding values for different platforms.
  10. #ifndef WINVER // Allow use of features specific to Windows XP or later.
  11. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
  12. #endif
  13. #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.                   
  14. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
  15. #endif
  16. #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
  17. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  18. #endif
  19. #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
  20. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
  21. #endif
  22. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  23. #include <afxwin.h>         // MFC core and standard components
  24. #include <afxext.h>         // MFC extensions
  25. #ifndef _AFX_NO_OLE_SUPPORT
  26. #include <afxole.h>         // MFC OLE classes
  27. #include <afxodlgs.h>       // MFC OLE dialog classes
  28. #include <afxdisp.h>        // MFC Automation classes
  29. #endif // _AFX_NO_OLE_SUPPORT
  30. #ifndef _AFX_NO_DB_SUPPORT
  31. #include <afxdb.h> // MFC ODBC database classes
  32. #endif // _AFX_NO_DB_SUPPORT
  33. #ifndef _AFX_NO_DAO_SUPPORT
  34. #include <afxdao.h> // MFC DAO database classes
  35. #endif // _AFX_NO_DAO_SUPPORT
  36. #ifndef _AFX_NO_OLE_SUPPORT
  37. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  38. #endif
  39. #ifndef _AFX_NO_AFXCMN_SUPPORT
  40. #include <afxcmn.h> // MFC support for Windows Common Controls
  41. #endif // _AFX_NO_AFXCMN_SUPPORT
  42. #include "FileStore_inc.h"