mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-11 05:49:18 +03:00
aaa7b5e9a2
- GNOME edition now compiles without any trace of the text mode dependencies. - We no longer link with libraries we do not use (crypt, gpm), this fixes the recent bug reports. - More tree updates, enhancements. Miguel.
16 lines
357 B
C
16 lines
357 B
C
/* Key constants as used by mc for non-curses ports */
|
|
|
|
enum {
|
|
KEY_BACKSPACE = 400,
|
|
KEY_END, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT,
|
|
KEY_HOME, KEY_A1, KEY_C1, KEY_NPAGE, KEY_PPAGE, KEY_IC,
|
|
KEY_ENTER, KEY_DC, KEY_SCANCEL, KEY_BTAB
|
|
};
|
|
|
|
#define KEY_KP_ADD 4001
|
|
#define KEY_KP_SUBTRACT 4002
|
|
#define KEY_KP_MULTIPLY 4003
|
|
|
|
|
|
#define KEY_F(x) 1000+x
|