github.com/sagernet/sing@v0.4.0-beta.19.0.20240518125136-f67a0988a636/common/winpowrprof/event.go (about)

     1  package winpowrprof
     2  
     3  const (
     4  	EVENT_SUSPEND = iota
     5  	EVENT_RESUME
     6  	EVENT_RESUME_AUTOMATIC // Because the user is not present, most applications should do nothing.
     7  )
     8  
     9  type EventListener interface {
    10  	Start() error
    11  	Close() error
    12  }