/* * console-io.h: Console IO internal calls * * Author: * Gonzalo Paniagua Javier (gonzalo@ximian.com) * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) */ #ifndef _MONO_METADATA_CONSOLEIO_H #define _MONO_METADATA_CONSOLEIO_H #include #include #include #include G_BEGIN_DECLS MonoBoolean ves_icall_System_ConsoleDriver_Isatty (HANDLE handle); gint32 ves_icall_System_ConsoleDriver_InternalKeyAvailable (gint32 timeout); MonoBoolean ves_icall_System_ConsoleDriver_SetEcho (MonoBoolean echo); MonoBoolean ves_icall_System_ConsoleDriver_SetBreak (MonoBoolean want_break); MonoBoolean ves_icall_System_ConsoleDriver_TtySetup (MonoString *teardown, char *verase, char *vsusp, char *intr); MonoBoolean ves_icall_System_ConsoleDriver_GetTtySize (HANDLE handle, gint32 *width, gint32 *height); void ves_icall_System_ConsoleDriver_Suspend (void); G_END_DECLS #endif /* _MONO_METADATA_CONSOLEIO_H */