是包含了,但是没有链接
链接的时候使用多线程DLL而不是多线程调试DLL,
stdafx.h里面这样写,这段来自SDK的Arx Wizard:
#if defined(_DEBUG) && !defined(_FULLDEBUG_) #define _DEBUG_WAS_DEFINED #undef _DEBUG #pragma message (" Compiling MFC / STL / ATL header files in release mode.") #endif
//----- ObjectARX and OMF headers needs this #include <map>
//----------------------------------------------------------------------------- #include <afxwin.h> //----- MFC core and standard components #include <afxext.h> //----- MFC extensions
//----------------------------------------------------------------------------- #ifdef _DEBUG_WAS_DEFINED #define _DEBUG #undef _DEBUG_WAS_DEFINED #endif |