 |
» |
|
|
|
The derwin routine is used to create a subwindow relative to parent window. Syntax |  |
#include <curses.h>
WINDOW *derwin(WINDOW *orig, int nlines, int ncols, int begin_y,
int begin_x);
|
Parameters |  |
- orio
A pointer to the parent window for the newly created subwindow.
- nlines
The number of lines in the subwindow.
- ncols
The number of columns in the subwindow.
- begin_y
The y (row) coordinate of the upper-left corner
of the subwindow, relative to the parent window.
- begin_x
The x (column) coordinate of the upper-left corner of the subwindow, relative to the parent window.
Return Values |  |
On success, a pointer to the new window structure is
returned; otherwise, a null pointer is returned. Implementation Considerations |  |
UNIX System V implementation See Also |  |
newwin(), subwin(), touchwin(), delwin() Portability |  |
UNIX System V
|