/* Curses Key Values Make Up These are curses key values that override the default because for one reason or another, they are not #defined properly. */ #ifndef CURSESWKEYMAP_H #define CURSESWKEYMAP_H #undef KEY_ENTER #define KEY_ENTER 0x0000000d /* #define KEY_ENTER 0x0000000a */ #undef KEY_NUMPADENTER #define KEY_NUMPADENTER 0x00000157 #undef KEY_ESC #define KEY_ESC 0x0000001b #undef KEY_DELETE #define KEY_DELETE 0x0000007f #undef KEY_TAB #define KEY_TAB 0x00000009 #undef KEY_F1 #define KEY_F1 0x00000109 #undef KEY_F9 #define KEY_F9 0x00000111 #undef KEY_F10 #define KEY_F10 0x00000112 #undef KEY_F11 #define KEY_F11 0x00000113 #undef KEY_F12 #define KEY_F12 0x00000114 #undef KEY_PAGEUP #define KEY_PAGEUP 0x00000153 #undef KEY_PAGEDOWN #define KEY_PAGEDOWN 0x00000152 /* #undef KEY_ #define KEY_ */ #endif /* CURSESWKEYMAP_H */