sing/common/winpowrprof/event.go
2024-08-06 12:23:56 +08:00

14 lines
266 B
Go

package winpowrprof
const (
EVENT_SUSPEND = iota
EVENT_RESUME
EVENT_RESUME_AUTOMATIC // Because the user is not present, most applications should do nothing.
)
type EventCallback = func(event int)
type EventListener interface {
Start() error
Close() error
}