我正在尝试使用 LoadLibrary(仅用于测试而不是 QLibrary)在 qt 中加载 DLL,该 dll 是在 eclipse CDT 中编译的,但奇怪的是,当我尝试在 Dll 内的任何函数中实例化任何类时,LoadLibrary 失败并出现错误 127 (使用 GetLastError),但如果我没有实例化任何 LoadLibrary 成功,为什么会发生这种情况?我的代码是下一个,标题和您的实现:
标题:
#ifndef DESKTOPWINUTILS_H_
#define DESKTOPWINUTILS_H_
#ifdef __dll__
#define DESKTOPUTILSEXP __declspec(dllexport)
#else
#define DESKTOPUTILSEXP __declspec(dllimport)
#endif // __dll__
#include <iostream>
#include <stdio.h>
#include <string.h>
#include "ximage.h"
#include "IDesktopUtils.h"
class DesktopUtils:public IDesktopUtils{
public:
DesktopUtils();
~DesktopUtils(void);
char* sayHello();
};
extern "C" DESKTOPUTILSEXP bool create(IDesktopUtils**);
#endif /* DESKTOPWINUTILS_H_ */
执行:
#define __dll__
#include "DesktopUtils.h"
DesktopUtils::DesktopUtils(){
sayHello();
}
char* DesktopUtils::sayHello(){
return (char *)("I say Hello");
}
bool create(IDesktopUtils** desktoputils){
//DesktopUtils *desktoputils = new DesktopUtils();
if(!desktoputils)
return false;
*desktoputils =(IDesktopUtils*) new DesktopUtils; //if comment this the load is successful
return true;
}
在 qt 项目中,我使用它来加载 DLL,仅用于知道是否已加载,我什至没有使用 GetProcAddress:
typedef char*(*createInst)(void);
HINSTANCE dll;
dll = LoadLibrary(TEXT("libDesktopWinUtils.dll"));
if(dll){
message.setText("library loaded");
message.exec();
}else{
char error[10];
itoa(GetLastError(),error,10);
message.setText(error);
message.exec();
}