New test.
[mono.git] / mono / metadata / console-io.h
1 /*
2  * console-io.h: Console IO internal calls
3  *
4  * Author:
5  *      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6  *
7  * Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
8  */
9
10 #ifndef _MONO_METADATA_CONSOLEIO_H
11 #define _MONO_METADATA_CONSOLEIO_H
12
13 #include <config.h>
14 #include <glib.h>
15
16 #include <mono/metadata/object.h>
17 #include <mono/io-layer/io-layer.h>
18
19 G_BEGIN_DECLS
20
21 MonoBoolean ves_icall_System_ConsoleDriver_Isatty (HANDLE handle);
22 gint32 ves_icall_System_ConsoleDriver_InternalKeyAvailable (gint32 timeout);
23 MonoBoolean ves_icall_System_ConsoleDriver_SetEcho (MonoBoolean echo);
24 MonoBoolean ves_icall_System_ConsoleDriver_SetBreak (MonoBoolean want_break);
25 MonoBoolean ves_icall_System_ConsoleDriver_TtySetup (MonoString *teardown, char *verase, char *vsusp, char *intr);
26 MonoBoolean ves_icall_System_ConsoleDriver_GetTtySize (HANDLE handle, gint32 *width, gint32 *height);
27 void ves_icall_System_ConsoleDriver_Suspend (void);
28
29 G_END_DECLS
30
31 #endif /* _MONO_METADATA_CONSOLEIO_H */
32