| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_WINDOWS) |
| 7 |
| 8 #include "bin/stdin.h" |
| 9 |
| 10 |
| 11 namespace dart { |
| 12 namespace bin { |
| 13 |
| 14 int Stdin::ReadByte() { |
| 15 HANDLE h = GetStdHandle(STD_INPUT_HANDLE); |
| 16 uint8_t buffer[1]; |
| 17 DWORD read = 0; |
| 18 int c = -1; |
| 19 if (ReadFile(h, buffer, 1, &read, NULL) && read == 1) { |
| 20 c = buffer[0]; |
| 21 } |
| 22 return c; |
| 23 } |
| 24 |
| 25 |
| 26 void Stdin::SetEchoMode(bool enabled) { |
| 27 HANDLE h = GetStdHandle(STD_INPUT_HANDLE); |
| 28 DWORD mode; |
| 29 if (!GetConsoleMode(h, &mode)) return; |
| 30 if (enabled) { |
| 31 mode |= ENABLE_ECHO_INPUT; |
| 32 } else { |
| 33 mode &= ~ENABLE_ECHO_INPUT; |
| 34 } |
| 35 SetConsoleMode(h, mode); |
| 36 } |
| 37 |
| 38 |
| 39 void Stdin::SetLineMode(bool enabled) { |
| 40 HANDLE h = GetStdHandle(STD_INPUT_HANDLE); |
| 41 DWORD mode; |
| 42 if (!GetConsoleMode(h, &mode)) return; |
| 43 if (enabled) { |
| 44 mode |= ENABLE_LINE_INPUT; |
| 45 } else { |
| 46 mode &= ~ENABLE_LINE_INPUT; |
| 47 } |
| 48 SetConsoleMode(h, mode); |
| 49 } |
| 50 |
| 51 } // namespace bin |
| 52 } // namespace dart |
| 53 |
| 54 #endif // defined(TARGET_OS_WINDOWS) |
| OLD | NEW |