27 lines
680 B
C
27 lines
680 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)mvwin.c 1.1 94/10/31 SMI"; /* from S5R3.1 1.7 */
|
|
#endif
|
|
|
|
#include "curses_inc.h"
|
|
|
|
/* relocate the starting position of a _window */
|
|
|
|
mvwin(win, by, bx)
|
|
register WINDOW *win;
|
|
register int by, bx;
|
|
{
|
|
if (by >= LINES || bx >= COLS || by < 0 || bx < 0)
|
|
return (ERR);
|
|
win->_begy = by;
|
|
win->_begx = bx;
|
|
(void) wtouchln(win, 0, win->_maxy, -1);
|
|
return (win->_immed ? wrefresh(win) : OK);
|
|
}
|