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,
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.