现在的位置: 首页 > 综合 > 正文

Microsoft Visual C++ 6.0 各类工程配置说明(二)

2013年08月24日 ⁄ 综合 ⁄ 共 2098字 ⁄ 字号 评论关闭
(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



Win32
程序的入口函数WinMain






目,Project->settings->General


置使用MFC
的方式,一般

设为
Not Using MFC
,否

程序

构的改



大。从Not Using MFC
到使用MFC
的改



对连
接的

的影响

似于

4
Win32 DLL
)。
(6.1) Not Using MFC






WIN32,_DEBUG,_WINDOWS,_MBCS


编译
参数:/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




接参数:kernel32.lib
user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib
ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo
/subsystem:windows /incremental:yes /pdb:"Debug/W32AppDemo.pdb" /debug
/machine:I386 /out:"Debug/W32AppDemo.exe" /pdbtype:sept
(6.2) Use MFC in a Shared DLL



编译
参数:注意使用的Run-time library
参数


/MDd

(6.3) Use MFC in a Static DLL



编译
参数:注意使用的Run-time library
参数


/MTd

抱歉!评论已关闭.