xref: /original-bsd/sys/news3400/bm/vt100esc.h (revision 3705696b)
1 /*
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Sony Corp. and Kazumasa Utashiro of Software Research Associates, Inc.
7  *
8  * %sccs.include.redist.c%
9  *
10  * from: $Hdr: vt100esc.h,v 4.300 91/06/09 06:15:01 root Rel41 $ SONY
11  *
12  *	@(#)vt100esc.h	8.1 (Berkeley) 06/10/93
13  */
14 
15 /*
16  *  escape sequence structure
17  */
18 struct  esc_sequence {
19 	char	command;
20 	char	*terminators;
21 	int	(*esc_func)();
22 };
23 
24 /*
25  *  key pad structure
26  */
27 
28 struct	key_pad {
29 	char	kpd_numeric;
30 	char	kpd_applic;
31 };
32 
33 #define	NUMERIC	0
34 #define	APPLIC	1
35