// 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 }
func (win *Window) Mvwin(y, x int) { C.mvwin((*C.WINDOW)(win), C.int(y), C.int(x)) }