File: gui_win.go

package info (click to toggle)
golang-github-jesseduffield-gocui 0.3.0%2Bgit20190803.ad0cd60-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 252 kB
  • sloc: makefile: 3
file content (10 lines) | stat: -rw-r--r-- 178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
// +build windows

package gocui

import "github.com/jesseduffield/termbox-go"

func (g *Gui) getTermWindowSize() (int, int, error) {
	x, y := termbox.Size()
	return x, y, nil
}