1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
//go:build windows
package platform
import (
"syscall"
"github.com/ergochat/readline/internal/term"
)
const (
IsWindows = true
)
func SuspendProcess() {
}
// GetScreenSize returns the width, height of the terminal or -1,-1
func GetScreenSize() (width int, height int) {
width, height, err := term.GetSize(int(syscall.Stdout))
if err == nil {
return width, height
} else {
return 0, 0
}
}
func DefaultIsTerminal() bool {
return term.IsTerminal(int(syscall.Stdin)) && term.IsTerminal(int(syscall.Stdout))
}
func DefaultOnWidthChanged(f func()) {
DefaultOnSizeChanged(f)
}
func DefaultOnSizeChanged(f func()) {
// TODO: does Windows have a SIGWINCH analogue?
}
|