<> <> <> DIRECTORY IO, Rope; PeachPrint: CEDAR DEFINITIONS IMPORTS IO = BEGIN PupAborted: ERROR; localServer: Rope.ROPE; DoPeachPrintCommand: PUBLIC PROC [server, file: Rope.ROPE, log: IO.STREAM _ IO.noWhereStream, fork: BOOL_FALSE, copies: INT_1]; 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.