keyboard.h (432B)
1 enum { 2 KF= 0xF000, /* Rune: beginning of private Unicode space */ 3 Spec= 0xF800, 4 /* KF|1, KF|2, ..., KF|0xC is F1, F2, ..., F12 */ 5 Khome= KF|0x0D, 6 Kup= KF|0x0E, 7 Kpgup= KF|0x0F, 8 Kprint= KF|0x10, 9 Kleft= KF|0x11, 10 Kright= KF|0x12, 11 Kdown= Spec|0x00, 12 Kview= Spec|0x00, 13 Kpgdown= KF|0x13, 14 Kins= KF|0x14, 15 Kend= KF|0x18, 16 17 Kalt= KF|0x15, 18 Kshift= KF|0x16, 19 Kctl= KF|0x17, 20 21 Kbs= 0x08, 22 Kdel= 0x7f, 23 Kesc= 0x1b, 24 Keof= 0x04, 25 };