blob: bb9e154e86afda1b4b6ad7c7309f58754f060d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/*
* (c) The University of Glasgow 2002
*
* Win32 Console API support
*/
#include "ghcconfig.h"
#if defined(mingw32_HOST_OS) || defined(cygwin32_HOST_OS) || defined(__MINGW32__) || defined(_MSC_VER)
/* to the end */
#include "consUtils.h"
#include <windows.h>
#include <io.h>
#if defined(cygwin32_HOST_OS)
#define _get_osfhandle get_osfhandle
#endif
int
set_console_buffering__(int fd, int cooked)
{
HANDLE h;
DWORD st;
/* According to GetConsoleMode() docs, it is not possible to
leave ECHO_INPUT enabled without also having LINE_INPUT,
so we have to turn both off here. */
DWORD flgs = ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT;
if ( (h = (HANDLE)_get_osfhandle(fd)) != INVALID_HANDLE_VALUE ) {
if ( GetConsoleMode(h,&st) &&
SetConsoleMode(h, cooked ? (st | ENABLE_LINE_INPUT) : st & ~flgs) ) {
return 0;
}
}
return -1;
}
int
set_console_echo__(int fd, int on)
{
HANDLE h;
DWORD st;
DWORD flgs = ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT;
if ( (h = (HANDLE)_get_osfhandle(fd)) != INVALID_HANDLE_VALUE ) {
if ( GetConsoleMode(h,&st) &&
SetConsoleMode(h,( on ? (st | flgs) : (st & ~ENABLE_ECHO_INPUT))) ) {
return 0;
}
}
return -1;
}
int
get_console_echo__(int fd)
{
HANDLE h;
DWORD st;
if ( (h = (HANDLE)_get_osfhandle(fd)) != INVALID_HANDLE_VALUE ) {
if ( GetConsoleMode(h,&st) ) {
return (st & ENABLE_ECHO_INPUT ? 1 : 0);
}
}
return -1;
}
int
flush_input_console__(int fd)
{
HANDLE h;
if ( (h = (HANDLE)_get_osfhandle(fd)) != INVALID_HANDLE_VALUE ) {
if ( FlushConsoleInputBuffer(h) ) {
return 0;
}
}
/* ToDo: translate GetLastError() into something errno-friendly */
return -1;
}
#endif /* defined(mingw32_HOST_OS) || ... */
|