(4.2) Use MFC in a Shared DLL 预定义:与(4.1)相比,增加了_WINDLL,_AFXDLL的定义 编译参数:没有太大区别。 连接参数:/nologo /dll /incremental:yes /pdb:"Debug/Win32DllDemo.pdb" /debug/machine:I386/out:"Debug/Win32DllDemo.dll" /implib:"Debug/Win32DllDemo.lib" /pdbtype:sept 可以看出,(4.1) 里连接的很多库消失了,这时,项目4变成了类似于项目2中的设置。编程时需要注意,项目4的stdafx.h仅包含了<windows.h>,此时如果要用MFC的类,需要自己加入MFC的几个头文件(<afxwin.h>、<afxext.h>等),并且将#include <windows.h>和DllMain入口函数注释掉! (4.3) Use MFC in a Static DLL 使用MFC DLL的方式Shared和Static之间的区别与上述项目类似,不再做比较。 5.Win32 Static Library项目 预编译头文件stdafx.h(可能没有这个文件): 不使用MFC,仅仅#define WIN32_LEAN_AND_MEAN,而如果使用MFC,内容如下: #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers #include <afx.h> #include <afxwin.h> (5.1) Not Using MFC 预定义:WIN32,_DEBUG,_MBCS,_LIB,新出现了符号_LIB 编译参数:/nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"Debug/W32StaPrehead.pch" /Yu"stdafx.h" /Fo"Debug/" /Fd"Debug/" /FD /GZ /c 注意到使用的Run-time library参数为/MLd。 库参数:这个项目没有Link设置页,代替的是Library页,参数如下:/nologo /out:"Debug\W32StaPrehead.lib" (5.2) Use MFC in a Shared DLL 预定义:WIN32,_DEBUG,_WINDOWS,_MBCS,_AFXDLL,与项目1(MFC Exe)设置相同。 编译参数:注意使用的Run-time library参数为/MDd。 库参数:没有太大区别。 (5.3) Use MFC in a Static DLL 编译参数:注意使用的Run-time library参数为/MTd。 6.Win32 Application项目 预编译头文件stdafx.h #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include <windows.h> // Windows Header Files: #include <stdlib.h> #include <malloc.h> #include <memory.h> #include <tchar.h> // C RunTime Header Files |
正文
Microsoft Visual C++ 6.0 各类工程配置说明(二)2007-04-23 14:35:00
【评论】 【打印】 【字体:大 中 小】 本文链接:http://blog.pfan.cn/xboy/25160.html
阅读(3236) | 评论(0)
版权声明:编程爱好者网站为此博客服务提供商,如本文牵涉到版权问题,编程爱好者网站不承担相关责任,如有版权问题请直接与本文作者联系解决。谢谢!
评论