The immedok routine is used to call wrefresh() on changes to window.
Syntax |
 |
#include <curses.h>
int immedok(WINDOW *win, bool bf);
|
Parameters |
 |
- win
A pointer to the window that is to be refreshed.
- bf
A Boolean expression.
Return Values |
 |
- OK
Successful completion.
- ERR
An error occurred.
Description |
 |
If bf is TRUE, immedok() calls wrefresh() if any change to the window image is made (for example, through routines such as addch(), wclrtobot(), and wscrl()). Repeated calls to wrefresh() may affect performance negatively. The immedok() routine is disabled by default.
Implementation Considerations |
 |
UNIX System V implementation
See Also |
 |
waddch(), wclrtobot(), wrefresh(), wscrl()
Portability |
 |
UNIX System V