PDCursesMod icon indicating copy to clipboard operation
PDCursesMod copied to clipboard

Public Domain Curses - a curses library for environments that don't fit the termcap/terminfo model, modified and extended from the 'official' version

Results 53 PDCursesMod issues
Sort by recently updated
recently updated
newest added

With WinGUI I observed that drawing commands (e.g. addch()) immediately update the display (GUI window), instead of waiting for refresh() or doupdate(). This causes flickering in some applications that don't...

In the following example, the last "X" got erased, apparently by wclrtoeol(): ```c #include int main(void) { initscr(); refresh(); // erases screen WINDOW *win = newwin(1,0,0,0); mvwaddstr(win, 0, getmaxx(win)-3, "XXX");...

Per MSDN one should always define both macros, as they are used in different contexts, but must match. The definition of `UNICODE` can also be provided by the build environment,...