mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
10 lines
179 B
Go
10 lines
179 B
Go
//go:build windows
|
|
|
|
package global
|
|
|
|
import "syscall"
|
|
|
|
func GetSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP}
|
|
}
|