Files
TorrServerJellyfin/server/cmd/preconfig_win.go
2021-09-07 22:56:51 +03:00

30 lines
509 B
Go

//go:build windows
// +build windows
package main
import (
"syscall"
"time"
)
const (
EsSystemRequired = 0x00000001
EsContinuous = 0x80000000
)
var pulseTime = 1 * time.Minute
func Preconfig(kill bool) {
// don't sleep/hibernate windows
kernel32 := syscall.NewLazyDLL("kernel32.dll")
setThreadExecStateProc := kernel32.NewProc("SetThreadExecutionState")
pulse := time.NewTicker(pulseTime)
for {
select {
case <-pulse.C:
setThreadExecStateProc.Call(uintptr(EsSystemRequired))
}
}
}