1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-11-23 12:02:58 -05:00
Files
v2fly/common/platform/ctlcmd/attr_windows.go

13 lines
172 B
Go
Raw Normal View History

//go:build windows
// +build windows
2018-04-08 23:22:55 +02:00
package ctlcmd
import "syscall"
func getSysProcAttr() *syscall.SysProcAttr {
return &syscall.SysProcAttr{
HideWindow: true,
}
}