C# Windows 窗体无法在 Windows10 上加载非托管 C++ DLL

Posted

技术标签:

【中文标题】C# Windows 窗体无法在 Windows10 上加载非托管 C++ DLL【英文标题】:C# Windows Forms Unable to load unmanaged C++ DLL on Windows10 【发布时间】:2016-01-28 09:05:01 【问题描述】:

我有一个使用无人 c++ dll 的 C# Windows 窗体应用程序。 当我调试或作为独立运行它(在 windows7 上)时,我只是将 dll 放在应用程序 exe 旁边,它运行得很好。

当我尝试在 Windows10 上执行相同操作(作为独立运行)时,出现以下异常:

Unable to load DLL 'AnalyzerLib.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

谁能告诉我为什么?我应该在某处给予许可还是注册?

这是我从代码中访问 dll 的方法:

namespace Analyzer 
public unsafe class Connector 
    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    public static extern bool isAvailable();

    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    public static extern void win32set_DetectParams(float[] parameters, int prob_Size);

    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    public static extern void win32setDetectParamsAndColorMatrix(float[] parameters, int prob_Size, float[] colorMatrix16bytes);

    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    public static extern void win32analyzeBuffer(byte[] javaBuffer, byte[] javaInputCopyBuffer, int[] analyzeBufferResArr, int width, int height, bool convertYUV2RGB);

    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    public static extern int getCoreLogBufferSize();

    [DllImport("AnalyzerLib.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
    private static extern byte* getCoreLogBuffer();

        

【问题讨论】:

请检查是否与此无关:***.com/questions/9003072/… 【参考方案1】:

如果您正在加载的 DLL 与可执行文件位于同一目录中,则会找到它。这使我们得出结论,找不到的模块是您的 DLL 的依赖项。

通常这意味着您需要安装您的 DLL 所依赖的适当的 MSVC 运行时。

确保您运行的是发行版而不是调试版

您可以通过从提示的命令运行来找出 dll 依赖项:

dumpbin /DEPENDENTS my.dll

【讨论】:

以上是关于C# Windows 窗体无法在 Windows10 上加载非托管 C++ DLL的主要内容,如果未能解决你的问题,请参考以下文章

C# Windows 窗体无法在 Windows10 上加载非托管 C++ DLL

wpf中从windows中打开windows1但为啥不显示windows1中的控件

具有 Ms 访问权限的 C# Windows 窗体应用程序无法插入数据

你如何在 Windows 窗体上显示动画 GIF (c#)

C#用windows Api Hooks 控制鼠标键盘在一个窗体内

C# Windows 窗体中的 WMP 在显示 GIF 后停止播放声音