位置变更,Preview正在重构

This commit is contained in:
2026-08-07 20:18:12 +08:00
parent 86df4bf3c5
commit 41eb21f512
20 changed files with 185 additions and 77 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build windows
package process
import (
"os/exec"
"syscall"
)
func setProcessAttributes(cmd *exec.Cmd) {
cmd.SysProcAttr = &syscall.SysProcAttr{
HideWindow: true,
}
}