stdafx.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /************************************************************************
  2. * 程序名: 精仿QQ主界面
  3. * 制作人: 李克平, 2011年04月11日
  4. * 版本号: 1.0
  5. ************************************************************************/
  6. // stdafx.h : 标准系统包含文件的包含文件,
  7. // 或是经常使用但不常更改的
  8. // 特定于项目的包含文件
  9. #pragma once
  10. #ifndef _SECURE_ATL
  11. #define _SECURE_ATL 1
  12. #endif
  13. #ifndef VC_EXTRALEAN
  14. #define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
  15. #endif
  16. #include "targetver.h"
  17. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  18. // 关闭 MFC 对某些常见但经常可放心忽略的警告消息的隐藏
  19. #define _AFX_ALL_WARNINGS
  20. #include <afxwin.h> // MFC 核心组件和标准组件
  21. #include <afxext.h> // MFC 扩展
  22. #include <afxdisp.h> // MFC 自动化类
  23. #ifndef _AFX_NO_OLE_SUPPORT
  24. #include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
  25. #endif
  26. #ifndef _AFX_NO_AFXCMN_SUPPORT
  27. #include <afxcmn.h> // MFC 对 Windows 公共控件的支持
  28. extern void GetAppDir(CString& strAppDir);
  29. #endif // _AFX_NO_AFXCMN_SUPPORT
  30. #ifdef _UNICODE
  31. #if defined _M_IX86
  32. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  33. #elif defined _M_IA64
  34. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  35. #elif defined _M_X64
  36. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  37. #else
  38. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  39. #endif
  40. #endif