TIPPrivateTypes.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 20, 1992 10:46 am PST
Reveales private types of TIPTypes
DIRECTORY
Process USING [Milliseconds],
TIPTypes USING [TIPTable];
TIPPrivateTypes: CEDAR DEFINITIONS ~ BEGIN
TIPTableRep: TYPE ~ RECORD [
link: TIPTypes.TIPTable ¬ NIL,
opaque: BOOL ¬ TRUE,
mouseTicks: Process.Milliseconds ¬ 50,
impl: REF TIPTableImplRep
];
TIPTableImplRep: TYPE;
END.