1238730Sdelphij/*
2369759Sgit2svn * Copyright (C) 1984-2021  Mark Nudelman
3238730Sdelphij *
4238730Sdelphij * You may distribute under the terms of either the GNU General Public
5238730Sdelphij * License or the Less License, as specified in the README file.
6238730Sdelphij *
7238730Sdelphij * For more information, see the README file.
8238730Sdelphij */
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 */
16369759Sgit2svn#define PCK_SHIFT_TAB           '\017'
17369759Sgit2svn#define PCK_ALT_E               '\022'
18369759Sgit2svn#define PCK_CAPS_LOCK           '\072'
19369759Sgit2svn#define PCK_F1                  '\073'
20369759Sgit2svn#define PCK_NUM_LOCK            '\105'
21369759Sgit2svn#define PCK_HOME                '\107'
22369759Sgit2svn#define PCK_UP                  '\110'
23369759Sgit2svn#define PCK_PAGEUP              '\111'
24369759Sgit2svn#define PCK_LEFT                '\113'
25369759Sgit2svn#define PCK_RIGHT               '\115'
26369759Sgit2svn#define PCK_END                 '\117'
27369759Sgit2svn#define PCK_DOWN                '\120'
28369759Sgit2svn#define PCK_PAGEDOWN            '\121'
29369759Sgit2svn#define PCK_INSERT              '\122'
30369759Sgit2svn#define PCK_DELETE              '\123'
31369759Sgit2svn#define PCK_CTL_LEFT            '\163'
32369759Sgit2svn#define PCK_CTL_RIGHT           '\164'
33369759Sgit2svn#define PCK_CTL_DELETE          '\223'
34