stdafx.h
上传用户:pass2008
上传日期:2021-07-05
资源大小:3299k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // stdafx.h : 标准系统包含文件的包含文件,
  2. // 或是经常使用但不常更改的
  3. // 特定于项目的包含文件
  4. #pragma once
  5. #ifndef STRICT
  6. #define STRICT
  7. #endif
  8. // 如果必须将位于下面指定平台之前的平台作为目标,请修改下列定义。
  9. // 有关不同平台对应值的最新信息,请参考 MSDN。
  10. #ifndef WINVER // 允许使用特定于 Windows XP 或更高版本的功能。
  11. #define WINVER 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。
  12. #endif
  13. #ifndef _WIN32_WINNT // 允许使用特定于 Windows XP 或更高版本的功能。
  14. #define _WIN32_WINNT 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。
  15. #endif
  16. #ifndef _WIN32_WINDOWS // 允许使用特定于 Windows 98 或更高版本的功能。
  17. #define _WIN32_WINDOWS 0x0410 // 将此值更改为适当的值,以指定将 Windows Me 或更高版本作为目标。
  18. #endif
  19. #ifndef _WIN32_IE // 允许使用特定于 IE 6.0 或更高版本的功能。
  20. #define _WIN32_IE 0x0600 // 将此值更改为相应的值,以适用于 IE 的其他版本。
  21. #endif
  22. #define _ATL_APARTMENT_THREADED
  23. #define _ATL_NO_AUTOMATIC_NAMESPACE
  24. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  25. #include <afxwin.h>
  26. #ifndef _AFX_NO_OLE_SUPPORT
  27. #include <afxdisp.h>        // MFC 自动化类
  28. #endif // _AFX_NO_OLE_SUPPORT
  29. #include "resource.h"
  30. #include <atlbase.h>
  31. #include <atlcom.h>
  32. //#include <afxinet.h>
  33. #include "..includeximage.h"
  34. /*
  35. #pragma comment(lib, "..\lib\cximage.lib")
  36. #pragma comment(lib, "..\lib\cximagecrtd.lib")
  37. #pragma comment(lib, "..\lib\jasper.lib")
  38. #pragma comment(lib, "..\lib\jbig.lib")
  39. #pragma comment(lib, "..\lib\Jpeg.lib")
  40. #pragma comment(lib, "..\lib\libdcr.lib")
  41. #pragma comment(lib, "..\lib\mng.lib")
  42. #pragma comment(lib, "..\lib\png.lib")
  43. #pragma comment(lib, "..\lib\Tiff.lib")
  44. #pragma comment(lib, "..\lib\zlib.lib")
  45. */
  46. using namespace ATL;