gpt4 book ai didi

c++ - 使用动态链接从 .dll 库调用函数

转载 作者:行者123 更新时间:2023-11-28 04:36:31 26 4
gpt4 key购买 nike

好的,那我就为 MCP2221 转换器编写 C++ 代码。为了使用它,我尝试实现 .dll 文件。即mcp2221_dll_m_dotnetv4_x86.dll,可从以下网址下载: https://www.microchip.com/DevelopmentTools/ProductDetails/PartNo/ADM00559

我已经尝试实现它,但我仍然无法调用函数,我也找不到原因。

我使用以下代码:

#include "stdafx.h"
#include <windows.h>
#include <iostream>
#include <string.h>

using namespace std;
typedef string(WINAPI *MYPROC)();

int main()
{
HINSTANCE hinstLib;
BOOL fFreeResult, fRunTimeLinkSuccess = FALSE;

// Get a handle to the DLL module.
char a;

hinstLib = LoadLibrary(TEXT("mcp2221_dll_m_dotnetv4_x86.dll"));

// If the handle is valid, try to get the function address.

if (hinstLib != NULL)
{
cout << "LIB\tloaded" << endl;

MYPROC ProcAdd = (MYPROC)GetProcAddress(hinstLib, "M_Mcp2221_GetLibraryVersion");

// If the function address is valid, call the function.

if (NULL != ProcAdd)
{
cout << "FUNC\tloaded" << endl;
string s= ProcAdd();
fRunTimeLinkSuccess = TRUE;
}
else
{
cout << "FUNC\tNOT loaded" << endl;
}
// Free the DLL module.

fFreeResult = FreeLibrary(hinstLib);
}
else
{
cout << "LIB\tNOT loaded" << endl;
}
return 0;
}

函数在规范中定义如下:

字符串^ M_Mcp2221_GetLibraryVersion()

描述:返回DLL的版本号返回:包含库版本的字符串如果函数失败,请使用 Marshal.GetLastWin32Error() 确定错误代码。

我仍然加载了LIBFUNC NOT loaded 输出。

谁能告诉我我一直做错了什么?将不胜感激。

最佳答案

可能,您使用了错误的 dll 和错误的函数名称。

您正在尝试从 dll 中为 .Net 托管代码加载函数 - MCP2221_DLL(v2.2.1)\managed\MCP2221DLL-M-dotNet4\x86\mcp2221_dll_m_dotnetv4_x86.dll。使用显示从 dll 导出的函数的实用程序,我还没有找到从这个导出的任何函数。

尝试使用非托管 dll MCP2221_DLL(v2.2.1)\unmanaged\dll\mcp2221_dll_um_x86.dll。它有函数_Mcp2221_GetLibraryVersion@4

关于c++ - 使用动态链接从 .dll 库调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51265374/

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