mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-10 11:03:11 +00:00
13 lines
172 B
Go
13 lines
172 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package ctlcmd
|
|
|
|
import "syscall"
|
|
|
|
func getSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
HideWindow: true,
|
|
}
|
|
}
|