1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/main/config_json_windows.go
2017-12-13 13:42:07 +01:00

12 lines
151 B
Go

// +build windows
package main
import "syscall"
func getSysProcAttr() *syscall.SysProcAttr {
return &syscall.SysProcAttr{
HideWindow: true,
}
}