使用动态链接从 .dll 库调用函数
Calling fuctions from the .dll library using dynamic linking
好的,所以我正在为 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()
说明:ReturnsDLL的版本号
Returns:包含库版本的字符串
如果函数失败,请使用 Marshal.GetLastWin32Error() 确定错误代码。
我仍然加载了 LIB
FUNC NOT loaded 输出。
谁能告诉我我一直做错了什么?将不胜感激。
可能,您使用了错误的 dll 和错误的函数名称。
您正在尝试从 .Net 托管代码的 dll 加载函数 - 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
好的,所以我正在为 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()
说明:ReturnsDLL的版本号 Returns:包含库版本的字符串 如果函数失败,请使用 Marshal.GetLastWin32Error() 确定错误代码。
我仍然加载了 LIB FUNC NOT loaded 输出。
谁能告诉我我一直做错了什么?将不胜感激。
可能,您使用了错误的 dll 和错误的函数名称。
您正在尝试从 .Net 托管代码的 dll 加载函数 - 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