是否可以将CreateProcess
用于兼容设置,例如reduced color mode: 16bit
或其他设置?
我想避免不得不去兼容性来更改设置。我想直接在辅助应用程序上使用通过CreateProcess
设置的选项直接运行它。
我目前正在使用此代码:
var sI syscall.StartupInfo
var pI syscall.ProcessInformation
argv := syscall.StringToUTF16Ptr("app.exe")
err := syscall.CreateProcess(
nil,
argv,
nil,
nil,
true,
0,
nil,
nil,
&sI,
&pI)