153889Smckusick /* 2*63256Sbostic * Copyright (c) 1992, 1993 3*63256Sbostic * The Regents of the University of California. All rights reserved. 453889Smckusick * 553889Smckusick * This code is derived from software contributed to Berkeley by 653889Smckusick * Sony Corp. and Kazumasa Utashiro of Software Research Associates, Inc. 753889Smckusick * 853889Smckusick * %sccs.include.redist.c% 953889Smckusick * 1053889Smckusick * from: $Hdr: vt100esc.h,v 4.300 91/06/09 06:15:01 root Rel41 $ SONY 1153889Smckusick * 12*63256Sbostic * @(#)vt100esc.h 8.1 (Berkeley) 06/10/93 1353889Smckusick */ 1453889Smckusick 1553889Smckusick /* 1653889Smckusick * escape sequence structure 1753889Smckusick */ 1853889Smckusick struct esc_sequence { 1953889Smckusick char command; 2053889Smckusick char *terminators; 2153889Smckusick int (*esc_func)(); 2253889Smckusick }; 2353889Smckusick 2453889Smckusick /* 2553889Smckusick * key pad structure 2653889Smckusick */ 2753889Smckusick 2853889Smckusick struct key_pad { 2953889Smckusick char kpd_numeric; 3053889Smckusick char kpd_applic; 3153889Smckusick }; 3253889Smckusick 3353889Smckusick #define NUMERIC 0 3453889Smckusick #define APPLIC 1 35