<> <> <> DIRECTORY Rope, PressScreen; TSViewer: DEFINITIONS = BEGIN ROPE: TYPE = Rope.ROPE; Tool: TYPE = REF ToolRec; ToolRec: TYPE; NewTool: PROCEDURE [server: ROPE] RETURNS [Tool]; <> QueueRequest: PROCEDURE [tool: Tool, documentName: ROPE]; <> WaitForIdle: PROCEDURE [tool: Tool]; <> Stop: PROCEDURE [tool: Tool]; <> Pause: PROCEDURE [tool: Tool]; <> StopSending: PROCEDURE [tool: Tool]; <> Print: PROCEDURE [tool: Tool]; <> PrintAll: PROCEDURE [tool: Tool]; <> Screen: PROCEDURE [tool: Tool, side: PressScreen.Side]; < ; side is leftSide, bothSides, or rightSide.>> Copies: PROCEDURE [tool: Tool, copies: NAT]; <> TempPress: PROCEDURE [tool: Tool, temporaryPressFiles: BOOLEAN _ TRUE]; <> END. Michael Plass, November 15, 1982 2:49 pm. Added StopSending and Screen.