00001 00013 /* console.h : console control includes 00014 * $Id: console.h 1 2006-01-13 22:47:50Z MagicalTux $ 00015 */ 00016 00017 #ifndef OA_CONSOLE_H 00018 #define OA_CONSOLE_H 00019 00024 extern unsigned char term_input_status; 00025 00030 #ifdef _WIN32 00031 extern HANDLE hStdin; 00032 extern HANDLE hStdout; 00033 #ifdef HAVE_TERMIOS 00034 struct termios tio_orig; 00035 #endif /* HAVE_TERMIOS */ 00036 #endif 00037 00042 void term_input_enable(); 00043 00047 void term_input_disable(); 00048 00051 #endif // OA_CONSOLE_H 00052