Re: [PDCurses] Compiling trouble under VC++

2001-02-15 Thread John Q. Smith
Hmmm, thanks--I finally got testcurs.c to compile (I note that it has at least two errors unrelated to pdcurses in it--it couldn't find either strlen or isprint, I had to add string.h and ctype.h to get it to work) While I actually have MS-VC++ 5, the instructions were enough that I fou

[PDCurses] Small bug in termattrs()

2001-02-15 Thread John Q. Smith
It doesn't seem to realize that ansi.sys doesn't support blinking text: if ( termattrs() & A_BLINK ) mvwaddstr(win,5, 1, "This terminal supports blinking."); else mvwaddstr(win,5, 1, "This terminal does NOT support blinking."); This (from testcurs.c) is evaluating true,