XlEndian.mesa
Copyright Ó 1989, 1991 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 1, 1989 2:52:14 pm PST
Christian Jacobi, September 12, 1991 11:26 am PDT
XlEndian: CEDAR DEFINITIONS ~ BEGIN
Endian specific public types for Xl
This package supports big (and little) endian 32 bits per word hosts
This package needs to be replaced for other hosts, e.g. PrincOps
Variants of this package will change the layout of the fields, but won't change the names and the sizes of the fields.
PackedRectangle: TYPE = WORD32 MACHINE DEPENDENT RECORD [
x: INT16,
y: INT16,
width: CARD16,
height: CARD16
];
Layed out such that it can be moved to the X server as whole block.
END.