mirror of
https://github.com/strongdm/comply
synced 2024-11-05 15:35:25 +00:00
42 lines
554 B
Go
42 lines
554 B
Go
// +build windows
|
|
|
|
package readline
|
|
|
|
import (
|
|
"io"
|
|
"syscall"
|
|
)
|
|
|
|
func SuspendMe() {
|
|
}
|
|
|
|
func GetStdin() int {
|
|
return int(syscall.Stdin)
|
|
}
|
|
|
|
func init() {
|
|
isWindows = true
|
|
}
|
|
|
|
// get width of the terminal
|
|
func GetScreenWidth() int {
|
|
info, _ := GetConsoleScreenBufferInfo()
|
|
if info == nil {
|
|
return -1
|
|
}
|
|
return int(info.dwSize.x)
|
|
}
|
|
|
|
// ClearScreen clears the console screen
|
|
func ClearScreen(_ io.Writer) error {
|
|
return SetConsoleCursorPosition(&_COORD{0, 0})
|
|
}
|
|
|
|
func DefaultIsTerminal() bool {
|
|
return true
|
|
}
|
|
|
|
func DefaultOnWidthChanged(func()) {
|
|
|
|
}
|