TIPKeyboards.mesa
Copyright Ó 1988, 1991, 1992 by Xerox Corporation. All rights reserved.
Bier, November 18, 1988 9:25:06 am PST
Christian Jacobi, February 25, 1992 3:44 pm PST
I think this is bogus. I have kept this alive for the benefit of existing clients.
DIRECTORY
KeyTypes;
TIPKeyboards: CEDAR DEFINITIONS =
BEGIN
KeySym: TYPE = KeyTypes.KeySym;
KeySymsFromKeyCode: PROC [keyCode: KeyTypes.KeyCode] RETURNS [keySym1, keySym2: KeySym, success: BOOL ¬ TRUE];
This is extremely machine dependent as it does not specify a mapping.
The current implementation uses PrincOps machine dependent stuff.
END.