I'm having some problems getting ncurses' getch() to block. Default operation seems to be non-blocking (or have I missed some initialization)? I would like it to work like getch() in Windows. I have tried various versions of
timeout(3000000);
nocbreak();
cbreak();
noraw();
etc...
(not all at the same time). I would prefer to not (explicitly) use any WINDOW, if possible. A while loop around getch(), checking for a specific return value is OK too.
initscr' msh.c:(.text+0x2004): undefined reference tostdscr' msh.c:(.text+0x2014): undefined reference towtimeout' msh.c:(.text+0x2019): undefined reference tostdscr' msh.c:(.text+0x2021): undefined reference towgetch' msh.c:(.text+0x2029): undefined reference toendwin' – AJ. Oct 3 '09 at 10:00