예제 #1
0
// MoveWindow moves the location of the window to the specified coordinates
func (w *Window) MoveWindow(y, x int) {
	C.mvwin(w.win, C.int(y), C.int(x))
	return
}
예제 #2
0
파일: curses.go 프로젝트: adsr/gocurse
func (win *Window) Mvwin(y, x int) {
	C.mvwin((*C.WINDOW)(win), C.int(y), C.int(x))
}