PeachPrint.mesa
Edited by Don Curry on March 23, 1986 7:15:16 pm PST
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.STREAMIO.noWhereStream];
FileNameLength: TYPE = {short, long, fullPath};
FileNameOrder: TYPE = {primary, secondary};
FileName: PROC[
length: FileNameLength,
order:  FileNameOrder,
index:  INT ← 1,
ext:  Rope.ROPENIL ]
RETURNS[rope: Rope.ROPE];
END.