Allows curses to use the hardware insert/delete line feature.
Curses Library (libcurses.a)
#include <curses.h>
idlok( Window, Flag)
WINDOW *Window;
bool Flag;
The idlok subroutine enables curses to use the hardware insert/delete line feature for terminals so equipped. If this feature is disabled, curses cannot use it. The insert/delete line feature is always considered. Enable this option only if your application needs the insert/delete line feature; for example, for a screen editor. If the insert/delete line feature cannot be used, curses will redraw the changed portions of all lines that do not match the desired line.
Flag | Specifies whether to enable curses to use the hardware insert/delete line feature (True) or not (False). |
Window | Specifies the window it will affect. |
idlok(stdscr, TRUE);
idlok(my_window, FALSE);
Curses Overview for Programming in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
Setting Video Attributes and Curses Options in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.