KeyTypes.mesa
Copyright Ó 1991 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 6, 1991 11:18:58 am PST
Christian Jacobi, March 11, 1991 10:49 am PST
KeyTypes: CEDAR DEFINITIONS =
BEGIN
KeyCode: TYPE = MACHINE DEPENDENT {keycode0(0), keycode255(255)};
A machine [and time] dependent identification of a key. Use VAL to create arbitrary values.
KeySym: TYPE = RECORD [val: CARD32];
An identification which refers (roughly) to the engravings found on the keycaps of keyboards key engravings.
Values defined and registered by the X Consortium.
END.