mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-11-23 12:02:58 -05:00
12 lines
151 B
Go
12 lines
151 B
Go
|
|
// +build windows
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "syscall"
|
||
|
|
|
||
|
|
func getSysProcAttr() *syscall.SysProcAttr {
|
||
|
|
return &syscall.SysProcAttr{
|
||
|
|
HideWindow: true,
|
||
|
|
}
|
||
|
|
}
|