error C2065: 'CArchiveStream' : undeclared identifier

时间:2022-01-07 17:27:08

release:模式下

问题: 在导入JPEG文件时要使用到  CArchiveStream类  但是编译的时候会出现  'CArchiveStream'   :   undeclared   identifier    编译错误。即使追加了 #include <afxpriv.h> #include <afxpriv2.h> 有时候还是不能解决问题。

解决方法: 在预编译文件stdafx.h文件中追加  #ifndef _AFX_NO_OLE_SUPPORT #include <afxdtctl.h>  // MFC の Internet Explorer 4 コモン コントロール サポート #endif

http://www.guokr.com/question/468503/

http://hi.baidu.com/huangqishang/item/a80daff54e09b1d643c36ab2

http://blog.csdn.net/charleyf/article/details/4180213