-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecukey.h
48 lines (44 loc) · 1.6 KB
/
ecukey.h
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
/*+-------------------------------------------------------------------------
ecukey.h -- single key (ASCII) defines
--------------------------------------------------------------------------*/
/*+:EDITS:*/
/*:04-26-2000-11:15-wht@bob-RELEASE 4.42 */
/*:01-24-1997-02:37-wht@yuriatin-SOURCE RELEASE 4.00 */
/*:09-11-1996-20:[email protected] telnet,curses,structural overhaul */
/*:11-23-1995-11:20-wht@kepler-source control 3.37 for tsx-11 */
/*:11-14-1995-10:[email protected] control point: SOCKETS */
/*:05-11-1995-15:01-wht@n4hgf-add CTL_F */
/*:05-04-1994-04:38-wht@n4hgf-ECU release 3.30 */
/*:09-10-1992-13:58-wht@n4hgf-ECU release 3.20 */
/*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA */
/*:03-27-1992-16:21-wht@n4hgf-re-include protection for all .h files */
/*:07-25-1991-12:56-wht@n4hgf-ECU release 3.10 */
/*:08-14-1990-20:[email protected] old edit history */
#ifndef _ecukey_h
#define _ecukey_h
#define CTL_B 0x02
#define CTL_C 0x03
#define CTL_D 0x04
#define ENQ 0x05
#define CTL_F 0x06
#define ACK 0x06
#define BEL 0x07
#define BS 0x08
#define NL 0x0A
#define TAB 0x09
#define CTL_L 0x0C
#define CRET 0x0D /* @#$#*& termcap curses uses CR as pointer */
#define XON 0x11
#define CTL_R 0x12
#define XOFF 0x13
#define CTL_U 0x15
#define SUB 0x18
#define ESC 0x1B
#define CTL_BSLASH 0x1C
#define CTL_Z 0x1A
#define SPACE 0x20
#define DEL 0x7F
#endif /* _ecukey_h */
/* vi: set tabstop=4 shiftwidth=4: */
/* end of ecukey.h */