WindowSystemInterface.mesa
Copyright Ó 1990 by Xerox Corporation. All rights reserved.
Laurie Horton October 10, 1990 11:44 am PDT Split from SystemInterface
This package is intended to hide the details of the Window envirionment from Cirio.
DIRECTORY
Rope USING [ROPE];
WindowSystemInterface: CEDAR DEFINITIONS
= BEGIN OPEN Rope;
Routines that abstract the TiogaAccess interface.
GetSelectionContents: PROC [] RETURNS [Rope.ROPE];
Assumes that the user has selected some text. Returns the selected text.
END.