File: no-curses.h

package info (click to toggle)
ocp 1%3A3.0.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,972 kB
  • sloc: ansic: 332,849; cpp: 68,319; makefile: 6,685; sh: 4,344; tcl: 1,040; xml: 436; perl: 320; ruby: 126
file content (21 lines) | stat: -rw-r--r-- 423 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef NO_CURSES_H
#define NO_CURSES_H 1

#define KEY_DOWN      258
#define KEY_UP        259
#define KEY_LEFT      260
#define KEY_RIGHT     261
#define KEY_HOME      262
#define KEY_BACKSPACE 263
#define KEY_F(n)      (264+(n))
#define KEY_DC        330
#define KEY_IC        331

#define KEY_NPAGE     338
#define KEY_PPAGE     339
#define KEY_BTAB      353

#define KEY_END       360
#define KEY_EXIT      361

#endif