Microsoft Visual C++ 6.0 各類工程配置說明(二)

來源:互聯網
上載者:User
(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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.