来自本机 C++ 加载的 DLL 的 C# 形式

Xce*_*led 5 c# c++ dll winapi

这是从这个线程产生的一个问题: Native C++ use C# dll via proxy C++ managed dll

简而言之,我正在通过 DLL 将(我的)C# 扩展加载到本机进程中。扩展程序需要显示一个表单,以便用户可以控制它。我正在使用标准的 .NET 表单,没有 3rd 方库或任何东西,我的表单没有显示。更糟糕的是,它会挂起目标进程。它没有使用任何 CPU,所以我觉得它在等待某个函数返回,但从来没有。

同样有趣的是弹出“初始化方法”消息框,而不是“测试”消息框。我已经测试了我能想到的所有东西(STAthread、线程、DisableThreadLibraryCalls,以及不同的代码位置),直到周日。我倾向于认为这是 Win32 互操作的一些模糊细节,但我找不到任何似乎会导致这些症状的东西。

你们中的一位专家可以看看我的代码并指出问题所在吗?

/// <summary>
/// Provides entry points for native code
/// </summary>
internal static class UnmanagedExports
{
   [UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
   public delegate int SendRecv([MarshalAs(UnmanagedType.SafeArray)]byte[] ByteArray, UInt64 Len);

   [STAThread]
   [DllExport("Initialize", CallingConvention.StdCall)]
   public static int Initialize(IntPtr hInstance, SendRecv Send, SendRecv Recv)
   {
       return DLLinterface.Initialize(hInstance, Send, Recv);
   }

   [DllExport("Terminate", CallingConvention.StdCall)]
   public static void Terminate()
   {
       DLLinterface.Terminate();
   }
}

internal class DLLinterface
{
   static System.Threading.Thread uiThread;

   [STAThread]
   internal static int Initialize(IntPtr hInstance, UnmanagedExports.SendRecv Send, UnmanagedExports.SendRecv Recv)
   {
       MessageBox.Show("Initialize method");
       try
       {
           uiThread = new System.Threading.Thread(Run);
           uiThread.Start();
       }
       catch (Exception ex)
       {
           MessageBox.Show("Failed to load: " + ex.Message, "Infralissa error", MessageBoxButtons.OK, MessageBoxIcon.Error);
       }
       return 1;
   }

   [STAThread]
   private static void Run()
   {
       MessageBox.Show("Test");

       Application.EnableVisualStyles();
       Application.SetCompatibleTextRenderingDefault(false);
       Application.Run(new Form1());
   }

   internal static void Terminate()
   {
       MessageBox.Show("Terminating.");
       if (uiThread.IsAlive)
           uiThread.Abort();
   }
}
Run Code Online (Sandbox Code Playgroud)

Xce*_*led 2

看来目标本身就有问题。它不是直接加载扩展,而是加载本机“exensionManager.dll”,幸运的是,他们使用 DllMain 加载我的扩展。换句话说,我试图在 loaderlock 下加载表单并陷入死锁。NET 尝试加载其他程序集。

答案很简单,我必须在新线程上显示表单。然而,.NET 的线程也挂起,因为它也需要死锁的库加载。

最后,我不得不直接使用普通的 P/Invoke CreateThread(),但表单终于显示出来了。