SpecialKeySyms.mesa
Copyright Ó 1991, 1992 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 6, 1991 11:18:58 am PST
Christian Jacobi, February 26, 1992 12:47 pm PST
These keysyms are used by the Cedar X window software itself.
DIRECTORY KeyTypes;
SpecialKeySyms: CEDAR DEFINITIONS =
BEGIN
KeySym: TYPE = KeyTypes.KeySym;
NoSym: KeySym = [0];
Defined by the X protocol, but not as a keysym
Button1: KeySym = [010070001H];
Button2: KeySym = [010070002H];
Button3: KeySym = [010070003H];
Button4: KeySym = [010070004H];
Button5: KeySym = [010070005H];
Registered as XeroxXK←PointerButton... at the X consortium
END.