Detect console streams more reliably on Windows
commit9bf5d37b2d0413b5f67af7a228641b0355f8deae
authorKarsten Blees <blees@dcon.de>
Sat, 31 Jul 2010 00:04:02 +0000 (31 00:04 +0000)
committerStepan Kasal <kasal@ucw.cz>
Wed, 16 Apr 2014 14:31:04 +0000 (16 16:31 +0200)
treee0e3da366b764c389f4d5a88f1d5f1d1882c43fe
parenteb65b299ea0020fe3263d19af6f1cbdb04ba3740
Detect console streams more reliably on Windows

GetStdHandle(STD_OUTPUT_HANDLE) doesn't work for stderr if stdout is
redirected. Use _get_osfhandle of the FILE* instead.

_isatty() is true for all character devices (including parallel and serial
ports). Check return value of GetConsoleScreenBufferInfo instead to
reliably detect console handles (also don't initialize internal state from
an uninitialized CONSOLE_SCREEN_BUFFER_INFO structure if the function
fails).

Signed-off-by: Karsten Blees <blees@dcon.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
compat/winansi.c