gpt4 book ai didi

c++ - 使用导出的 C++ 函数

转载 作者:行者123 更新时间:2023-11-30 01:57:52 26 4
gpt4 key购买 nike

<分区>

我已经用谷歌搜索好几天了,但我似乎无法解决这个问题。

我有一个标题,它将一些函数导出到一个库中。该文件称为 test_extern.h,函数如下所示:

__declspec(dllexport) int aFunction(int a, int b);

我还有另外两个文件,一个 .h 和 .cpp,它们在导出文件的帮助下计算一些东西。我已经精简了版本以显示我想要做什么。

A.h文件:

// Include CBaseDILI_J1939 header file.
class A : public CBaseDILI_J1939
{
public:
int bFunction(int a, int b);
}

A.cpp文件:

#include "test_extern.h"
#include "A.h"

int A::bFunction(int a, int b) {
return aFunction(a, b); // REturn the value of the exported function!
}

现在当我运行它时,我得到“错误 LNK2019:未解析的外部符号 _imp_aFunction”。

我已经阅读并阅读了所有关于导出 dll 的内容,有没有人知道我可能做错了什么?

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