IV.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Last modified by D. Swinehart, June 2, 1986 8:20:06 am PDT
Very global types, placed here to eliminate interdependencies among otherwise independent definitions modules.
DIRECTORY DESFace USING [ Key ];
IV: CEDAR DEFINITIONS = {
KeyTable: TYPE = REF KeyTableBody;
KeyTableBody: TYPE = RECORD [
s: SEQUENCE size: [0..20B] OF DESFace.Key
];
}.
Swinehart, June 2, 1986 8:19:24 am PDT
Thrush and Lark change too often, and cause grief when it means recompiling the dependents. KeyTable is currently their only shared data-type that is not defined elsewhere. Other types may find their way here. Lark ConnectionSpecs, or parts thereof, come to mind.
changes to: DIRECTORY, KeyTable