newwin
SYNOPSIS
#include <ocurses.h>
WINDOW newwin(nlines, ncols, begin_y, begin_x)
int nlines, ncols, begin_y, begin_x;
NOTES
-
newwin returns a pointer to a new window with a new data area.
-
The variables nlines and ncols
give the size of the new window.
-
begin_y and begin_x
give the screen coordinates from (0,0)
of the upper left corner of the window as it is
refreshed to the current screen.
EXAMPLE
Recall the sample program using two windows; see
``Using wnoutrefresh and doupdate''.
Also see
``The window program''.
Next topic:
subwin
Previous topic:
New windows
© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 27 April 2004