DLL 函数调用期间未引用的外部符号
我在以与解释相同的方式在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 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.