StdAfx.h
上传用户:hysujiao87
上传日期:2007-12-02
资源大小:156k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

C/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 95 and Windows NT 4 or later.
  11. #define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  12. #endif
  13. #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
  14. #define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 2000 or later.
  15. #endif
  16. #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
  17. #define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.
  18. #endif
  19. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  20. #include <afxwin.h>         // MFC core and standard components
  21. #include <afxext.h>         // MFC extensions
  22. #ifndef _AFX_NO_OLE_SUPPORT
  23. #include <afxole.h>         // MFC OLE classes
  24. #include <afxodlgs.h>       // MFC OLE dialog classes
  25. #include <afxdisp.h>        // MFC Automation classes
  26. #endif // _AFX_NO_OLE_SUPPORT
  27. #ifndef _AFX_NO_DB_SUPPORT
  28. #include <afxdb.h> // MFC ODBC database classes
  29. #endif // _AFX_NO_DB_SUPPORT
  30. #ifndef _AFX_NO_DAO_SUPPORT
  31. #include <afxdao.h> // MFC DAO database classes
  32. #endif // _AFX_NO_DAO_SUPPORT
  33. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  34. #ifndef _AFX_NO_AFXCMN_SUPPORT
  35. #include <afxcmn.h> // MFC support for Windows Common Controls
  36. #endif // _AFX_NO_AFXCMN_SUPPORT