InstanceDLL - throw if _hModeule == IntPtr.Zero, advanced loader - show the error if one occured
This commit is contained in:
parent
fc7a2859cb
commit
f31f3af0c8
|
@ -99,10 +99,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
Console.WriteLine(v);
|
||||
}
|
||||
}
|
||||
catch
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (!bootstrap)
|
||||
MessageBox.Show("Couldn't load the selected Libretro core for analysis. It won't be available.");
|
||||
{
|
||||
MessageBox.Show("Couldn't load the selected Libretro core for analysis. It won't be available.\n\nError:\n\n" + ex.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,6 +6,9 @@ namespace BizHawk.Common
|
|||
{
|
||||
public class InstanceDll : IDisposable, IImportResolver
|
||||
{
|
||||
[DllImport("kernel32.dll")]
|
||||
public static extern UInt32 GetLastError();
|
||||
|
||||
public InstanceDll(string dllPath)
|
||||
{
|
||||
// copy the dll to a temp directory
|
||||
|
@ -24,6 +27,11 @@ namespace BizHawk.Common
|
|||
string envpath_new = Path.GetDirectoryName(path) + ";" + envpath;
|
||||
Environment.SetEnvironmentVariable("PATH", envpath_new, EnvironmentVariableTarget.Process);
|
||||
_hModule = LoadLibrary(path); //consider using LoadLibraryEx instead of shenanigans?
|
||||
if (_hModule == IntPtr.Zero)
|
||||
{
|
||||
var lastError = GetLastError();
|
||||
throw new InvalidOperationException($"Failed to load plugin {path}, error code: 0x{lastError:X}");
|
||||
}
|
||||
var newfname = TempFileCleaner.RenameTempFilenameForDelete(path);
|
||||
File.Move(path, newfname);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue