XlEndian-Big32.mesa
Copyright Ó 1989, 1991 by Xerox Corporation. All rights reserved.
Christian Jacobi, February 1, 1989 2:52:14 pm PST
Christian Jacobi, March 7, 1991 3:54 pm PST
XlEndian--big endian 32 bits per word--: CEDAR DEFINITIONS ~ BEGIN
Endian specific public types for X11
This package supports big endian 32 bits per word hosts
This package needs to be replaced for other hosts
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 (0: 0..15): INT16,
y (0: 16..31): INT16,
width (1: 0..15): CARD16,
height (1: 16..31): CARD16
];
Layed out such that it can be moved to the X server as whole block.
END.