mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
14 lines
266 B
Go
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
|
|
}
|