<> <> DIRECTORY Ascii, Basics, Commander, CommandTool, Convert, IO, Process, PupDefs, PupStream, PupTypes, Rope, UserCredentials, UserProfile ; PeachPrint: CEDAR DEFINITIONS IMPORTS IO = BEGIN PupAborted: ERROR; localServer: Rope.ROPE; DoPeachPrintCommand: PUBLIC PROC [server, file: Rope.ROPE, log: IO.STREAM _ IO.noWhereStream]; FileNameLength: TYPE = {short, long, fullPath}; FileNameOrder: TYPE = {primary, secondary}; FileName: PROC[ length: FileNameLength, order: FileNameOrder, index: INT _ 1, ext: Rope.ROPE _ NIL ] RETURNS[rope: Rope.ROPE]; END.