当尝试包装本机 c++ 时,我收到 LNK2028 使用托管 c++ 的类

发布于 2024-07-17 04:20:59 字数 708 浏览 3 评论 0原文

尝试使用托管 C++ 类包装本机 cpp 类。

一切看起来都不错,但由于某种原因它无法编译。

出现以下链接器错误:

错误 25 错误 LNK2028:无法解析的令牌 (0A0002CE) 错误 27 错误 LNK2019:无法解析的外部符号

有什么想法如何解决此问题吗? :\

好吧,这是其中一个函数的完整错误:

Error 20 error LNK2028: unresolved token (0A0002CF) "public: bool __thiscall RCSclient::ResumeChannel(char *,int,__int64)" (?ResumeChannel@RCSclient@@ $$FQAE_NPADH_J@Z) 在函数“public: bool __clrcall RCSClientWrapper::RCSclientWrapper::ResumeChannel(class System::String ^,int,class System::DateTime ^)”中引用 (?ResumeChannel@RCSclientWrapper@RCSClientWrapper@@$$ $AAM_NP$AAVString@System@@HP$AAVDateTime@4@@Z) RCSClientWrapper.obj RCSClientWrapper

尝试添加 user32.lib 但没有结果..

FQ

trying to wrap a native cpp class using managed c++ class.

all looks good but for some reason it wont compile.

getting the following linker errors:

Error 25 error LNK2028: unresolved token (0A0002CE)
Error 27 error LNK2019: unresolved external symbol

Any ideas how do I fix this one ? :\

well, here is a full error of one of the functions:

Error 20 error LNK2028: unresolved token (0A0002CF) "public: bool __thiscall RCSclient::ResumeChannel(char *,int,__int64)" (?ResumeChannel@RCSclient@@$$FQAE_NPADH_J@Z) referenced in function "public: bool __clrcall RCSClientWrapper::RCSclientWrapper::ResumeChannel(class System::String ^,int,class System::DateTime ^)" (?ResumeChannel@RCSclientWrapper@RCSClientWrapper@@$$FQ$AAM_NP$AAVString@System@@HP$AAVDateTime@4@@Z) RCSClientWrapper.obj RCSClientWrapper

Tried to add the user32.lib with no results..

Ofer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝眼泪 2024-07-24 04:20:59

C++/CLI 允许您
几乎可以随意混合本机 C++,但使用 C++/CLI 可以让您的应用程序
依赖于.NET框架。

原因是您的 C++/CLI 项目在链接器输入中没有设置一些库(例如 user32.lib),因为 .NET 框架已经提供了类似的服务,并且
IDE 假设您更喜欢这些而不是旧的、本机的。

检查您的项目并添加对相应库的引用。

C++/CLI allows you
to mix in native C++ pretty much at will, but using C++/CLI makes your app
depend on the .NET framework.

The reason is your C++/CLI project doesn't have some libs (user32.lib, in example) setup in the linker input is that the .NET framework already provides similar services, and the
IDE assumes that you prefer those to the older, native ones.

Check your project and add reference to the corresponding library.

情痴 2024-07-24 04:20:59

也许您忘记了本机 C++ 头函数声明中的 virtual 关键字
从托管包装器调用!?

Maybe you forgot an virtual keyword into the native C++ header function declaration
to call from managed wrapper!?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文