5

我有一个使用 MFC 和 COM 的大型遗留项目。将其迁移到 Linux 的想法(winelib 不适用于此),我需要识别使用 MFC 的代码部分。奇怪的是,该解决方案包含两个从 CWinApp 继承并实例化的 DLL 项目。此外,我在这些 DLL 中看不到 CWinApp 的用途,因为实际的 GUI 代码位于单独的非 dll 项目中。

两个问题:
1. 有什么工具可以帮助我找到 MFC 特定的代码,以便我可以删除它?已经看到了Qt 选项
2. 为什么 CWinApp 在一个根本不做任何 GUI 工作的 DLL 项目中被实例化(如下)?它用于消息传递吗?我没有看到任何这样的语法。删除 CWinApp 实例化会导致另一个项目的指针未被初始化。奇怪的!

DLL 项目的代码之一是这样的:

#include "stdafx.h"
#include "resource.h"
#include <initguid.h>
#include "dlldatax.h"
//removed some project-specific includes for posting on SO

#ifdef _MERGE_PROXYSTUB
extern "C" HINSTANCE hProxyDll;
#endif

CComModule _Module;

BEGIN_OBJECT_MAP(ObjectMap)
OBJECT_ENTRY(CLSID_MyManager, CMyManager)
//removed some other similar lines as the line above
END_OBJECT_MAP()

// Component Category Helper Functions
static HRESULT CreateComponentCategory( CATID catid, WCHAR* catDescription );
static HRESULT UnRegisterCategory( CATID catid );

class CMyClassWrapperApp : public CWinApp
{
public:
    public:
    virtual BOOL InitInstance();
    virtual int ExitInstance();
    DECLARE_MESSAGE_MAP()
};

BEGIN_MESSAGE_MAP(CMyClassWrapperApp, CWinApp)
END_MESSAGE_MAP()

CMyClassWrapperApp theApp;

BOOL CMyClassWrapperApp::InitInstance()
{
#ifdef _MERGE_PROXYSTUB
    hProxyDll = m_hInstance;
#endif
    _Module.Init(ObjectMap, m_hInstance, &LIBID_MyClassWrapperLib);
    return CWinApp::InitInstance();
}

int CMyClassWrapperApp::ExitInstance()
{
    _Module.Term();
    return CWinApp::ExitInstance();
}
4

1 回答 1

5
  1. 在 MFC 项目设置中,更改Use of MFCUse Standard Windows Libraries。然后从您的StdAfx.h. 编译错误将引导您查看所有 MFC 特定部分!
  2. CWinApp是否允许您的 MFC 可执行文件正确使用 DLL 中的任何 MFC 代码。框架将通过此对象初始化您的 DLL。对于非 MFC DLL,您只需使用DllMain.

关于COM并且没有 MFC,我将从谷歌搜索开始:atl com codeproject

于 2012-09-17T10:50:02.017 回答