immedok - enable or disable immediate terminal refresh
#include <curses.h> void immedok(WINDOW *win, bool bf);
The immedok() function specifies whether the screen is refreshed whenever the window pointed to by win is changed. If bf is TRUE, the window is implicitly refreshed on each such change. If bf is FALSE, the window is not implicitly refreshed. The initial state is FALSE.
The immedok() function does not return a value.
No errors are defined.
The immedok() function is useful for windows that are used as terminal emulators.
clearok(), doupdate(), <curses.h>.