<> <> DIRECTORY Cucumber, IO, Rope, RoseTypes; RoseStateIO: DEFINITIONS = BEGIN ROPE: TYPE = Rope.ROPE; Cell: TYPE = RoseTypes.Cell; Save: PROC [cell: Cell, fileName: ROPE] RETURNS [errMsg: ROPE]; Restore: PROC [cell: Cell, fileName: ROPE] RETURNS [errMsg: ROPE]; TransferWords: PROC [wp: RoseTypes.WordPtr, wordCount: CARDINAL, stream: IO.STREAM, direction: Cucumber.Direction]; END.