gpt4 book ai didi

c++ - dllexport 函数未导出

转载 作者:行者123 更新时间:2023-11-30 03:14:14 29 4
gpt4 key购买 nike

我已根据 MSDN 文档完成所有操作,但我的函数仍未导出。 LINK1 LINK2 LINK3

这是我的(2 个项目,DLL 和从 dll 导入的应用程序),看起来像这样(简短版):

DLL 函数.h

#prgma once
#ifdef COMPILE_DLL
#define EXPORT __declspec(dllexport)
#else
#define EXPORT __declspec(dllimport)
#endif // COMPILE_DLL

namespace wsl
{
EXPORT bool PointInTriangle(int x1, int y1, int x2, int y2, int x3, int y3, int x, int y);
}

动态链接库函数.cpp

#include "functions.h"

namespace wsl
{
bool PointInTriangle(int x1, int y1, int x2, int y2, int x3, int y3, int x, int y)
{
// implementation...
return true;
}
}

DLL dllmain.cpp

#include <Windows.h>
BOOL APIENTRY DllMain(
[[maybe_unused]] HMODULE hModule,
DWORD ul_reason_for_call,
[[maybe_unused]] LPVOID lpReserved)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}

注意:dll工程中还有其他几个头文件和cpp文件,都在编译,但没有导出函数。

应用程序main.cpp

#include "functions.h"

int main()
{
wsl::PointInTriangle(0, 0, 20, 0, 10, 30, 10, 15);
return 0;
}

程序输出:

2>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl wsl::PointInCircleSector(int,int,int,float,float)" (__imp_?PointInCircleSector@wsl@@YA_NHHHMM@Z) referenced in function main 2>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl wsl::PointInTriangle(int,int,int,int,int,int,int,int)" (__imp_?PointInTriangle@wsl@@YA_NHHHHHHHH@Z) referenced in function main 2>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl wsl::PointInEllipse(int,int,int,int,int,int)" (__imp_?PointInEllipse@wsl@@YA_NHHHHHH@Z) referenced in function main 2>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl wsl::PointInCircle(int,int,int,int,int)" (__imp_?PointInCircle@wsl@@YA_NHHHHH@Z) referenced in function main 2>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) bool __cdecl wsl::PointInRectangle(int,int,int,int,int,int)" (__imp_?PointInRectangle@wsl@@YA_NHHHHHH@Z) referenced in function main 2>C:\Users\User\source\repos\WindowsSuperLibrary\x64\Debug DLL\MathSample.exe : fatal error LNK1120: 5 unresolved externals 2>Done building project "MathSample.vcxproj" -- FAILED.

你能解释一下这里的问题是什么吗?

我已经对 dll 运行了 dumpbin/EXPORTS,可以确认没有函数被导出。

COMPILE_DLL宏当然是在dll工程中定义的。

我确实将导入库包含到我的项目中。

头文件和 cpp 文件中的命名空间名称相同。

最佳答案

为了实际导出 DLL 的源文件中声明的函数,您必须执行以下两项操作之一:

要么 (1) 将 __declspec(dllexport) 属性添加到函数在定义它的源代码中(不仅仅是在 header )。

或者 (2) 将函数添加到模块定义文件 (.def) 中的 EXPORTS 列表中。

可用文档(尤其是较旧的文档)倾向于假设使用 .def 文件 EXPORTS 方法,并且可能会产生误导。

关于c++ - dllexport 函数未导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58049045/

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