/* -*-C-*- $Id: os2tty.c,v 1.2 1999/01/02 06:11:34 cph Exp $ Copyright (c) 1994, 1999 Massachusetts Institute of Technology This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "os2.h" #include "ostty.h" #ifdef USE_PMIO #include #endif static Tchannel input_channel; static Tchannel output_channel; void OS2_initialize_tty (void) { extern Tchannel EXFUN (OS_open_fd, (int fd)); input_channel = (OS2_make_channel (0, CHANNEL_READ)); (CHANNEL_INTERNAL (input_channel)) = 1; output_channel = (OS2_make_channel (1, CHANNEL_WRITE)); (CHANNEL_INTERNAL (output_channel)) = 1; } Tchannel OS_tty_input_channel (void) { return (input_channel); } Tchannel OS_tty_output_channel (void) { return (output_channel); } unsigned int OS_tty_x_size (void) { #ifdef USE_PMIO return (get_screen_width ()); #else return (80); #endif } unsigned int OS_tty_y_size (void) { #ifdef USE_PMIO return (get_screen_height ()); #else return (24); #endif } const char * OS_tty_command_beep (void) { return ("\a"); } const char * OS_tty_command_clear (void) { return ("\f"); }