EBEvent.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Doug Wyatt, April 15, 1992 4:27 pm PDT
Bier, July 24, 1992 5:53 pm PDT
Contents: Concrete type of an EBTypes.Event.
DIRECTORY
UserInput, UserInputGetActions;
EBEvent: CEDAR DEFINITIONS ~ BEGIN
Handle: TYPE ~ UserInput.Handle;
Action: TYPE ~ UserInputGetActions.InputAction;
Event: TYPE ~ REF EventRep;
EventRep: TYPE ~ RECORD [handle: Handle, action: Action];
END.