2016-10-24 00:44:56 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package fzf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
|
|
|
// TODO
|
|
|
|
}
|
2017-04-28 13:58:08 +00:00
|
|
|
|
|
|
|
func notifyStop(p *os.Process) {
|
|
|
|
// NOOP
|
|
|
|
}
|
|
|
|
|
|
|
|
func notifyOnCont(resizeChan chan<- os.Signal) {
|
|
|
|
// NOOP
|
|
|
|
}
|