Home | History | Annotate | Download | only in gpxe

Lines Matching refs:KEY_ANSI

60 #define KEY_ANSI( n, terminator ) ( 0x100 * ( (n) + 1 ) + (terminator) )
63 #define KEY_UP KEY_ANSI ( 0, 'A' ) /**< Up arrow */
64 #define KEY_DOWN KEY_ANSI ( 0, 'B' ) /**< Down arrow */
65 #define KEY_RIGHT KEY_ANSI ( 0, 'C' ) /**< Right arrow */
66 #define KEY_LEFT KEY_ANSI ( 0, 'D' ) /**< Left arrow */
67 #define KEY_END KEY_ANSI ( 0, 'F' ) /**< End */
68 #define KEY_HOME KEY_ANSI ( 0, 'H' ) /**< Home */
69 #define KEY_IC KEY_ANSI ( 2, '~' ) /**< Insert */
70 #define KEY_DC KEY_ANSI ( 3, '~' ) /**< Delete */
71 #define KEY_PPAGE KEY_ANSI ( 5, '~' ) /**< Page up */
72 #define KEY_NPAGE KEY_ANSI ( 6, '~' ) /**< Page down */
73 #define KEY_F8 KEY_ANSI ( 19, '~' ) /**< F8 (for PXE) */