0

我正在尝试使用 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();
    }
4

1 回答 1

1

您注释掉的代码似乎创建了系统无法解决的依赖项。例如,使用的代码new要求 new 的系统实现要么已经加载到进程中,要么可以定位和加载提供它的 DLL。如果不能,则 LoadLibrary 调用将失败。

找出缺失依赖项的方法:

  • 在记录所有加载和卸载的模块的调试器中运行程序。
  • 使用依赖遍历程序。(现在 SxS 使过程复杂化了,这些情况很少见。)
  • 在程序运行时运行类似 Process Monitor 的东西。这将准确显示正在搜索的 DLL 和位置。
于 2012-10-10T17:47:07.100 回答