MesaLoadStateBackdoor.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Last tweaked by Mike Spreitzer February 5, 1992 10:53 am PST
Willie-s, February 6, 1992 3:50 pm PST
DIRECTORY
MesaLoadState,
SafeStorage USING [Type];
MesaLoadStateBackdoor: CEDAR DEFINITIONS
~ BEGIN OPEN MesaLoadState;
UnmonitoredEnumerateInterfaces: PROC[config: Config, proc: InterfaceProc];
May enumerate an interface more than once, or omit an interface, if called at a really bad time.
UnmonitoredTypeStringFromType: PROC[type: SafeStorage.Type] RETURNS[typeString: STRING];
Returns NIL if type isn't valid. May falsely return NIL if called at a really bad time.
UnmonitoredFindTypeFromTypeString: PROC[typeString: STRING] RETURNS[found: BOOL, type: SafeStorage.Type];
May falsely return NOT found if called at a really bad time.
END.