有没有办法在win32 dll中用上mfc
比如:CWnd类可以用上。 谢谢指教。 问题点数:0、回复次数:2Top
1 楼diyzhao(一棵冬天的树)回复于 2003-06-03 10:57:46 得分 0
添加mfc支持:
//add to support MFC
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation extensionsTop
2 楼lizmei001(暗黑)回复于 2003-06-03 17:12:08 得分 0
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxsock.h> // MFC socket extensions
Top




