具有兼容性的CreateProcess

时间:2019-03-30 18:33:49

标签: windows go

是否可以将CreateProcess用于兼容设置,例如reduced color mode: 16bit或其他设置?

我想避免不得不去兼容性来更改设置。我想直接在辅助应用程序上使用通过CreateProcess设置的选项直接运行它。

enter image description here

我目前正在使用此代码:

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)

0 个答案:

没有答案