00001 /* 00002 * HT Editor 00003 * htkeyb.h (WIN32 implementation) 00004 * 00005 * Copyright (C) 1999-2002 Sebastian Biallas (sb@web-productions.de) 00006 * 00007 * This program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License version 2 as 00009 * published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 */ 00020 00021 #ifndef __HTKEYB_H__ 00022 #define __HTKEYB_H__ 00023 00024 #include "htio.h" 00025 00026 bool ht_keypressed(); 00027 00028 ht_key ht_getkey(); 00029 int ht_raw_getkey(); 00030 00031 00032 /* 00033 * INIT 00034 */ 00035 bool init_keyb(); 00036 00037 /* 00038 * DONE 00039 */ 00040 void done_keyb(); 00041 00042 00043 #endif /* !__HTKEYB_H__ */