DecomposerRegistryCodes.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Russ Atkinson (RRA) February 5, 1992 10:52 pm PST
DecomposerRegistryCodes: CEDAR DEFINITIONS = BEGIN
Various of the attributes that can be communicated through DecomposerRegistry have enumerations associated with their codes. Although these enumerations are encoded as integers, we need to have a sharable definition for these codes.
This interface only defines the subset of the enumerations believed necessary to decomposers. It is likely to add new definitions. The initial codes are chosen to be compatible with, but not dependent on, the JobPool interface.
In all cases the unknown code should never be set.
$Plex
Plex: TYPE = MACHINE DEPENDENT {
simplex (1),
duplex (2),
tumble (3),
unknown (WORD.LAST)
};
$Staple
Staple: TYPE = MACHINE DEPENDENT {
none (0),
singlePortraitStapling (1),
unknown (WORD.LAST)
};
$HighlightColor
HighlightColor: TYPE = MACHINE DEPENDENT {
none (0),
red (1),
green (2),
blue (3),
dontCare (4),
unknown (WORD.LAST)
};
$HighlightColorMismatchAction
HighlightColorMismatchAction: TYPE = MACHINE DEPENDENT {
abortPrint (0),
useLoadedColor (1),
requestOperatorIntervention (2),
unknown (WORD.LAST)
};
$Orientation
Orientation: TYPE = MACHINE DEPENDENT {
potrait (0),
landscape (1),
inversePortrait (2),
inverseLandscape (3),
unknown (WORD.LAST)
};
END.