omegafox/launcher/procgroup-win.go
daijro 8aadd3e1f2 Load default addons through launcher
- Default addons are now downloaded through the launcher to avoid redownloading when new profiles are created
- Updated README
2024-08-13 22:14:43 -05:00

16 lines
238 B
Go

//go:build windows
// +build windows
package main
import (
"os/exec"
)
func setProcessGroupID(cmd *exec.Cmd) {
// Windows doesn't support process groups in the same way
}
func killProcessGroup(cmd *exec.Cmd) {
cmd.Process.Kill()
}