在 Win32 Application 和 Win32 Console Application 中使用 MFC (轉)

worldblog發表於2007-12-13
在 Win32 Application 和 Win32 Console Application 中使用 MFC (轉)[@more@]

  在 Application 和 Win32 Console Application 中使用 MFC

在Virtual C++ 6.0建立的Win32 Application 和 Win32 Console Application 中使用 MFC 是可能的,主要的困難在於繞過MFC提供的WinMain。下面我提供一個方法以供參考:

 :namespace prefix = o ns = "urn:schemas--com::office" />

進入 Project--&gtSetting--&gt C/C++ Page,做以下修改:

 

1.  在Preprocessor definitions中加入_AFXDLL,加入後的設定大概是這樣的:

 

WIN32,_DE / NODEBUG,[_CONSOLE],[_MBCS],_AFXDLL

 

加入的_AFXDLL是關鍵 ,它欺騙MFC LIB,避免連線 MFC 的 WinMain 函式。

 

2. 修改Project Options,將 /MT或者 /ML標誌改為 /MD。

原因是在 afxver_.h 中會檢查_AFXDL, _MT, _DLL 標誌是否同時設定,否則報錯。儘管連結 For Multi-Threaded 版本的 Library 會損失一些,但是這個標誌的存在並不導致把 Project 編譯成 DLL。

 

3.  在Project的 stdafx.h 中包含必要的頭,或者直接從MFC AppWizard建立的stdafx.h中複製:

 

#define VC_EXTRALEAN  // Exclude rarely-used stuff from headers

 

#include

#include   // MFC core and standard components

#include   // MFC extensions

#include     // MFC support for Inte Explorer 4 Common Controls

#ifndef _AFX_NO_AFXCMN_SUPPORT

#include     // MFC support for Windows Common Controls

#endif // _AFX_NO_AFXCMN_SUPPORT

 

4.  在Project的WinMain / main中加入MFC的初始化程式碼,以下是_tWinMain和_tmain的情況:

 

extern "C" int WIN

_tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,

  LPTSTR lpCmdLine, int nCmdShow)

{

  int nRetCode = 0;

 

  if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))

  {

    TRACE0("al Error: MFC initialization failed.n");

    nRetCode = 1;

  }

  else

  {

  // Actual WinMain codes ...

 

    AfxWinTerm();

  }

 

  return nRetCode;

}

 

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])

{

  int nRetCode = 0;

 

  if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))

  {

  cerr << _T("Fatal Error: MFC initialization failed") << endl;

    nRetCode = 1;

  }

  else

  {

  // Actual main codes ...

 

    AfxWinTerm();

  }

 

  return nRetCode;

}

 

此外,在Virtual C++ 6.0建立的Win32 Dynamic-Link Library中也可以單獨使用MFC,這樣可以避免Project被MFC AppWizard和ATL AppWizard新增CWinApp例項,方法簡單,如下構造Project的DllMain函式即可:

 

#include

 

static AFX_EXTENSION_MODULE ProjectDLL  = { NULL, NULL };

 

extern "C" int APIENTRY

 

DllMain(HINSTANCE hInstance, D dwReason, LPVOID lpReserved)

{

  // Remove this if you use lpReserved.

  UNREFERENCED_PARAMETER(lpReserved);

 

  if (dwReason == DLL_PROCESS_ATTACH)

  {

  // Extension DLL one-time initialization.

  if (!AfxInitExtensionModule(ProjectDLL, hInstance))

  {

  TRACE0("Project.DLL initialize its extension module failed!n");

  return FALSE;

  }

 

  // CDynLinkLibrary’s destructor will be called in AfxTermExtensionModule.

  new CDynLinkLibrary(ProjectDLL);

  }

  else if (dwReason == DLL_PROCESS_DETACH)

  {

  TRACE0("Project.DLL tenating...n");

  // Terminate the library before destructors are called.

  AfxTermExtensionModule(ProjectDLL);

  }

 

  return TRUE;  // ok.

}

 

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-992749/,如需轉載,請註明出處,否則將追究法律責任。

相關文章