好的,所以,我为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()确定错误代码。
我仍然加载了 LIB 功能未加载输出。
谁能告诉我我做错了什么?会很感激的。
答案 0 :(得分:1)
可能是您使用了错误的dll和错误的函数名。
您正在尝试从dll中加载.Net管理代码-MCP2221_DLL(v2.2.1)\managed\MCP2221DLL-M-dotNet4\x86\mcp2221_dll_m_dotnetv4_x86.dll
的功能。有了显示从dll导出的功能的实用程序,我还没有发现从该dll导出的任何功能。
尝试使用非托管dll MCP2221_DLL(v2.2.1)\unmanaged\dll\mcp2221_dll_um_x86.dll
。
它具有功能_Mcp2221_GetLibraryVersion@4