DLL 函数调用期间未引用的外部符号

发布于 2024-10-18 01:55:55 字数 552 浏览 0 评论 0原文

我在以与解释相同的方式在 DLL 中实现类时遇到问题 这里 。我有我的接口,其中所有方法都声明为虚拟,我有实现该接口的类,并且我有应该创建该类的对象的方法。问题就在这里,当我尝试使用它时,出现“未引用的外部符号”错误。为什么?

class IXYZ
{
    virtual void XXX() = 0;
};

class XYZ : public IXYZ
{
    void XXX();
}

#ifdef __cplusplus
    extern "C" __declspec(dllexport) IXYZ* __stdcall GetIXYZ();
#endif

我在我的 win32 程序中使用它:

IXYZ *myvar = GetIXYZ();

在我的 exe 程序中,我包含了 dll 的 .h 文件

I'm having problems in implementing a class in a DLL in the same way it is explained here
. I have my interface with all the methods declared as virtual, I have my class that implements the interface and I have the method that should create the object of the class. The problem is here, when I try to use it I get a "unreferenced external symbol" error. Why?

class IXYZ
{
    virtual void XXX() = 0;
};

class XYZ : public IXYZ
{
    void XXX();
}

#ifdef __cplusplus
    extern "C" __declspec(dllexport) IXYZ* __stdcall GetIXYZ();
#endif

and I use it inside my win32 program with:

IXYZ *myvar = GetIXYZ();

In my exe program I've included the .h file of the dll

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

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

发布评论

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

评论(1

双手揣兜 2024-10-25 01:55:55

如果您在 DLL 中正确定义了该函数,并且正确导出了该函数,那么唯一合理的解释是您在使用该 DLL 的应用程序中使用 .lib 文件时出现了问题。

If you've correctly defined the function in the DLL, and it is exported properly, then the only plausible explanation is that there is something wrong with your use of the .lib file in the application that uses the DLL.

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