9
0
Fork 0

svn_rev_432

This commit is contained in:
Sascha Hauer 2007-07-05 18:01:53 +02:00 committed by Sascha Hauer
parent a9526a6237
commit 2c631835f9
1 changed files with 3 additions and 0 deletions

View File

@ -13,12 +13,15 @@
#define KEY_REFRESH_TO_EOL CTL_CH('e')
#define KEY_ERASE_LINE CTL_CH('x')
#define KEY_INSERT CTL_CH('o')
#define KEY_CLEAR_SCREEN CTL_CH('l')
#define KEY_DEL7 (char)127
#define KEY_END (char)133 // Cursor Key End
#define KEY_PAGEUP (char)135 // Cursor Key Page Up
#define KEY_PAGEDOWN (char)136 // Cursor Key Page Down
#define KEY_DEL (char)137 // Cursor Key Del
#define ANSI_CLEAR_SCREEN "\e[2J\e[;H"
char read_key(void);
#endif /* READKEY_H */