Now we have to implement custom Process.Start()

This commit is contained in:
Mino 2020-03-28 11:57:13 +09:00
parent e216227429
commit 3e6675adc0
3 changed files with 24 additions and 8 deletions

View file

@ -48,7 +48,7 @@ namespace Dalamud.Bootstrap
return new Process(handle);
}
private uint GetPid() => Win32.GetProcessId(m_handle);
public uint GetPid() => Win32.GetProcessId(m_handle);
public void Terminate(uint exitCode = 0)
{