gpt4 book ai didi

c++ - '链接错误 : already defined' when using COM interface

转载 作者:行者123 更新时间:2023-11-28 06:12:17 25 4
gpt4 key购买 nike

我正在 VS2013 中编写一个使用 COM DLL 库的 Win32 C++ 控制台应用程序。我已经添加了文件:

  • COMObject_i.c
  • COMObject_i.h

我的项目。

最初我开始在一个文件中工作,代码如下所示:

main.cpp

#include "COMObject_i.h"
#include "COMObject_i.c"

int _tmain(int argc, _TCHAR* argv[])
{
// Setup and use COM object interface...
}

这段代码运行良好,我能够构造 COM 对象接口(interface)并调用它的方法。但是,既然我要向前迈进,我想将 COM 对象接口(interface)设置移动到不同的类。当尝试这样做时,我得到这样的代码:

COMObjectWrapper.h

#pragma once

#include "COMObject_i.h"
#include "COMObject_i.c"

class COMObjectWrapper
{
// Class declaration
}

COMObjectWrapper.cpp

#include "COMObjectWrapper.h"

// Class method definitions

main.cpp

#include "COMObjectWrapper.h"

int _tmain(int argc, _TCHAR* argv[])
{
// Use COM object wrapper
}

这不会编译并给我几个链接器错误,如下所示:

error LNK2005: _CLSID_COMObjectInterface already defined in COMObjectWrapper.obj
error LNK2005: _IID_ICOMObjectInterface already defined in COMObjectWrapper.obj
error LNK2005: _LIBID_ICOMObjectLib already defined in COMObjectWrapper.obj

我已经尝试将 Main.cpp 中的#include 移动到 Main.h,但没有帮助。我尝试查看 COMObject_i 文件内部,发现不止一次定义了各种内容,但由于文件是自动生成的,我不确定如何解决该问题?

最佳答案

不要做:

#include "COMObject_i.c"

相反,将 COMObject_i.c 作为文件添加到您的项目中。

.c.cpp 文件应该单独编译,而不是#include d。特别是,C 文件不应包含在 C++ 文件中!

在这种情况下它可能会“工作”,只从 main.cpp 中包含它,但这是糟糕的风格。

关于c++ - '链接错误 : already defined' when using COM interface,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31023133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com