gpt4 book ai didi

c++ - 调用和传递 DLL 变量 C++

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

我有一个源文件 file.cpp,我需要在其中访问一个 DLL file.dll。此外,我需要访问 file.dll 中的函数 DoFunction 并且我需要将 file.cpp 中的一些变量传递给它。

我有:

m_hinstPtiDLL = LoadLibrary("file.dll");
pGNSI = (PGNSI) GetProcAddress(m_hinstPtiDLL, "DoFunction");

我希望能够传递 DoFunction 7 个变量并让它返回必要的值。

提前致谢

最佳答案

这将返回一个指向该函数的指针。

pGNSI = (PGNSI)GetProcAddress(m_hinstPtiDLL, "DoFunction");

如果它不是NULL 则简单地调用它。例如,如果函数的签名需要 7 个参数:

if (pGNSI)
{
pGNSI(p1,p2,p3,p4,p5,p6,p7);
}

关于c++ - 调用和传递 DLL 变量 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11870501/

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