<> <> <> <> <<>> DIRECTORY Xl; X11SelectionPrivate: CEDAR DEFINITIONS ~ BEGIN <> <<>> <> <<>> ConnectionData: TYPE = REF ConnectionDataRec; --per Connection Data. ConnectionDataRec: TYPE = RECORD [ connection: Xl.Connection, hiddenParent: Xl.Window ¬ Xl.nullWindow, --Parent for hidden private windows. Limits the width of the window tree of the root. targetsXAtom: Xl.XAtom ¬ [0], incrXAtom: Xl.XAtom ¬ [0], timeStampXAtom: Xl.XAtom ¬ [0], atomPairXAtom: Xl.XAtom ¬ [0], multipleXAtom: Xl.XAtom ¬ [0], requestorPrivateFreeList: REF ¬ NIL ]; GetConnectionData: PROC [c: Xl.Connection] RETURNS [ConnectionData]; <> <> <<>> END.