XTkPrivate.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, February 4, 1992
Christian Jacobi, May 1, 1992 11:05 am PDT
Shared features used in many XTk modules. Don't import this in independent clients as this is recompiled freely together with XTkImpl.
DIRECTORY
Xl USING [Details];
XTkPrivate: CEDAR DEFINITIONS
~ BEGIN
detailsForSynchronous: Xl.Details;
--details to enforce synchrounous error reporting
detailsForNoErrors: Xl.Details;
--details which ignore all errors
detailsForFlushNoErrors: Xl.Details;
--details which cause a flush, and, ignore all errors
detailsForFlushSoonNoErrors: Xl.Details;
--details which cause a flush soon, and, ignore all errors
END.