mirror of https://github.com/v2ray/v2ray-core
12 lines
153 B
Go
12 lines
153 B
Go
|
// +build windows
|
||
|
|
||
|
package ctlcmd
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func getSysProcAttr() *syscall.SysProcAttr {
|
||
|
return &syscall.SysProcAttr{
|
||
|
HideWindow: true,
|
||
|
}
|
||
|
}
|