pkg.re/essentialkaos/ek@v12.36.0+incompatible/terminal/window/size_windows.go (about) 1 // +build windows 2 3 package window 4 5 // ////////////////////////////////////////////////////////////////////////////////// // 6 // // 7 // Copyright (c) 2021 ESSENTIAL KAOS // 8 // Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> // 9 // // 10 // ////////////////////////////////////////////////////////////////////////////////// // 11 12 // GetSize returns window width and height 13 func GetSize() (int, int) { 14 return -1, -1 15 } 16 17 // GetWidth returns window width 18 func GetWidth() int { 19 return -1 20 } 21 22 // GetHeight returns window height 23 func GetHeight() int { 24 return -1 25 }