This file is indexed.

/usr/include/tilp2/keys92p.h is in libticalcs-dev 1.1.8+dfsg2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* Hey EMACS -*- linux-c -*- */
/* $Id$ */

/*  libticalcs - Ti Calculator library, a part of the TiLP project
 *  Copyright (C) 1999-2005  Romain LiƩvin
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software Foundation,
 *  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef __TICALCS_KEYS92P__
#define __TICALCS_KEYS92P__

// Keys codes of the TI92/TI92+


#define KEY92P_CR     13
#define KEY92P_ENTER  13
#define KEY92P_SPACE  32

#define KEY92P_LP     40	// Left parenthesis
#define KEY92P_RP     41	// Right parenthesis
#define KEY92P_MULT   42
#define KEY92P_PLUS   43
#define KEY92P_COMMA  44
#define KEY92P_MINUS  45
#define KEY92P_DOT    46
#define KEY92P_DIVIDE 47
#define KEY92P_0      48
#define KEY92P_1      49
#define KEY92P_2      50
#define KEY92P_3      51
#define KEY92P_4      52
#define KEY92P_5      53
#define KEY92P_6      54
#define KEY92P_7      55
#define KEY92P_8      56
#define KEY92P_9      57

#define KEY92P_EQUALS 61

#define KEY92P_A      65
#define KEY92P_B      66
#define KEY92P_C      67
#define KEY92P_D      68
#define KEY92P_E      69
#define KEY92P_F      70
#define KEY92P_G      71
#define KEY92P_H      72
#define KEY92P_I      73
#define KEY92P_J      74
#define KEY92P_K      75
#define KEY92P_L      76
#define KEY92P_M      77
#define KEY92P_N      78
#define KEY92P_O      79
#define KEY92P_P      80
#define KEY92P_Q      81
#define KEY92P_R      82
#define KEY92P_S      83
#define KEY92P_T      84
#define KEY92P_U      85
#define KEY92P_V      86
#define KEY92P_W      87
#define KEY92P_X      88
#define KEY92P_Y      89
#define KEY92P_Z      90

#define KEY92P_POWER  94

#define KEY92P_THETA  136
#define KEY92P_NEG    173

#define KEY92P_DELETE 257
#define KEY92P_STO    258
#define KEY92P_SIN    259
#define KEY92P_COS    260
#define KEY92P_TAN    261
#define KEY92P_LN     262
#define KEY92P_CLEAR  263
#define KEY92P_ESC    264
#define KEY92P_MENU   265
#define KEY92P_MODE   266
#define KEY92P_ON	  267
#define KEY92P_F1     268
#define KEY92P_F2     269
#define KEY92P_F3     270
#define KEY92P_F4     271
#define KEY92P_F5     272
#define KEY92P_F6     273
#define KEY92P_F7     274
#define KEY92P_F8     275
#define KEY92P_CHS	  276

#define KEY92P_LEFT   337
#define KEY92P_UP     338
#define KEY92P_UP_LF  339
#define KEY92P_RIGHT  340
#define KEY92P_UP_RG  342
#define KEY92P_DOWN   344
#define KEY92P_DW_LF  345
#define KEY92P_DW_RG  348

// Key modifiers

#define KEY92P_2ND    4096
#define KEY92P_CTRL   8192
#define KEY92P_SHIFT  16384
#define KEY92P_DRAG   32768

#endif