STPBackdoor.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Tim Diebert: May 19, 1986 10:20:06 am PDT
DIRECTORY
Rope USING [ROPE],
STP, STPPrivate;
STPBackdoor: CEDAR DEFINITIONS
~ BEGIN OPEN STP, STPPrivate;
SetPListItem: PUBLIC PROC [plist: PList, property, value: Rope.ROPE];
Updateds the specified item in the plist. Raises BadProperty if passed a valid property.
BadProperty: PUBLIC ERROR;
ResetPList: PUBLIC PROC [plist: PList];
UserStateToPList: PUBLIC PROC [stp: Handle];
DoFiles: PUBLIC PROC [stp: Handle, file: Rope.ROPE, confirm: STP.ConfirmProcType, complete: STP.CompletionProcType, op: Operation];
END.