Add GetImageFilePath

This commit is contained in:
Mino 2020-03-29 13:38:48 +09:00
parent 6f6792f27e
commit 2e4796f8bf
6 changed files with 39 additions and 5 deletions

View file

@ -20,7 +20,7 @@ namespace Dalamud.Bootstrap.Windows
internal ProcessException(string message, uint pid, Exception innerException) : base(message, innerException) => Pid = pid;
internal static ProcessException ThrowLastOsError(uint pid)
internal static void ThrowLastOsError(uint pid)
{
var inner = new Win32Exception();