3 * Null driver, does nothing.
6 * Gonzalo Paniagua Javier (gonzalo@ximian.com)
8 * Copyright (C) 2005-2009 Novell, Inc. (http://www.novell.com)
9 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12 #include <mono/metadata/appdomain.h>
13 #include <mono/metadata/object-internals.h>
14 #include <mono/metadata/class-internals.h>
15 #include <mono/metadata/domain-internals.h>
16 #include <mono/metadata/gc-internals.h>
17 #include <mono/metadata/console-io.h>
18 #include <mono/metadata/exception.h>
19 #include <mono/metadata/w32file.h>
20 #include <mono/utils/w32api.h>
21 #include "icall-decl.h"
24 mono_console_init (void)
29 mono_console_handle_async_ops (void)
34 ves_icall_System_ConsoleDriver_Isatty (HANDLE handle
, MonoError
* error
)
36 return mono_w32file_get_type (handle
) == FILE_TYPE_CHAR
;
40 ves_icall_System_ConsoleDriver_SetEcho (MonoBoolean want_echo
, MonoError
* error
)
46 ves_icall_System_ConsoleDriver_SetBreak (MonoBoolean want_break
, MonoError
* error
)
52 ves_icall_System_ConsoleDriver_InternalKeyAvailable (gint32 timeout
, MonoError
* error
)
58 ves_icall_System_ConsoleDriver_TtySetup (MonoStringHandle keypad
, MonoStringHandle teardown
, MonoArrayHandleOut control_chars
, int **size
, MonoError
* error
)