The dupwin routine is used to create a duplicate of a window.
Syntax |
 |
#include <curses.h>
WINDOW *dupwin(WINDOW, *win);
|
Parameters |
 |
- win
A pointer to the window that is to be duplicated.
Return Values |
 |
On success, a pointer to new window structure is
returned; otherwise, a null pointer is returned.
Description |
 |
The dupwin() routine creates a duplicate of the window win. A pointer to the new window structure is returned.
Implementation Considerations |
 |
UNIX System V implementation
See Also |
 |
derwin(), newwin(), subwin()
Portability |
 |
UNIX System V