<> <> DIRECTORY IO, ImagerBasic, Rope; SDtoSF: CEDAR DEFINITIONS ~ BEGIN ROPE: TYPE ~ Rope.ROPE; SDCharToRope: PROC [sdName: ROPE, charCode: NAT, fiducial: INT _ 15840] RETURNS [ROPE]; <> SDCharToStream: PROC [dest: IO.STREAM, sdName: ROPE, charCode: NAT, fiducial: INT _ 15840]; OutlineToRope: PROC [outline: REF, family: ROPE, face: ROPE, charCode: NAT, widthx: REAL, widthy: REAL, fiducial: INT _ 15840] RETURNS [ROPE]; <> <<>> OutlineToStream: PROC [dest: IO.STREAM, outline: REF, family: ROPE, face: ROPE, charCode: NAT, widthx: REAL, widthy: REAL, fiducial: INT _ 15840]; <<>> PathToStream: PROC [dest: IO.STREAM, pathMap: ImagerBasic.PathMapType, pathData: REF, family: ROPE, face: ROPE, charCode: NAT, widthx: REAL, widthy: REAL, fiducial: INT _ 15840]; <<>> ConvertFile: PROC [sdName: ROPE, sfName: ROPE]; <> <<>> END.