mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
13 lines
173 B
Go
13 lines
173 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package xdaemon
|
|
|
|
import "syscall"
|
|
|
|
func NewSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
HideWindow: true,
|
|
}
|
|
}
|