This commit is contained in:
Mino 2020-03-14 01:52:24 +09:00
parent 4a60a5f8a2
commit 33145ea0f2
5 changed files with 106 additions and 62 deletions

View file

@ -19,6 +19,8 @@ namespace Dalamud.Bootstrap
public void Launch(string exePath, string? commandLine)
{
commandLine = commandLine ?? "";
throw new NotImplementedException("TODO");
}
@ -46,7 +48,7 @@ namespace Dalamud.Bootstrap
using var process = Process.Open(pid);
var commandLine = process.ReadCommandLine();
if (!ArgumentContainer.Parse(commandLine[1], out var container))
if (!EncodedArgument.Parse(commandLine[1], out var container))
{
}