160786Sps/*
2240121Sdelphij * Copyright (C) 1984-2012  Mark Nudelman
360786Sps *
460786Sps * You may distribute under the terms of either the GNU General Public
560786Sps * License or the Less License, as specified in the README file.
660786Sps *
7240121Sdelphij * For more information, see the README file.
860786Sps */
960786Sps
1060786Sps
1160786Sps/*
1260786Sps * Definitions of keys on the PC.
1360786Sps * Special (non-ASCII) keys on the PC send a two-byte sequence,
1460786Sps * where the first byte is 0 and the second is as defined below.
1560786Sps */
1660786Sps#define	PCK_SHIFT_TAB		'\017'
1760786Sps#define	PCK_ALT_E		'\022'
1860786Sps#define	PCK_CAPS_LOCK		'\072'
1960786Sps#define	PCK_F1			'\073'
2060786Sps#define	PCK_NUM_LOCK		'\105'
2160786Sps#define	PCK_HOME		'\107'
2260786Sps#define	PCK_UP			'\110'
2360786Sps#define	PCK_PAGEUP		'\111'
2460786Sps#define	PCK_LEFT		'\113'
2560786Sps#define	PCK_RIGHT		'\115'
2660786Sps#define	PCK_END			'\117'
2760786Sps#define	PCK_DOWN		'\120'
2860786Sps#define	PCK_PAGEDOWN		'\121'
2960786Sps#define	PCK_INSERT		'\122'
3060786Sps#define	PCK_DELETE		'\123'
3160786Sps#define	PCK_CTL_LEFT		'\163'
3260786Sps#define	PCK_CTL_RIGHT		'\164'
3360786Sps#define	PCK_CTL_DELETE		'\223'
34