ControlMessages.mesa
Copyright (C) Xerox Corporation 1985, 1986. All rights reserved.
Last edited by Jacks 5-Nov-85 15:21:52
Tim Diebert: October 23, 1986 1:58:02 pm PDT
<<Keys for messages used by the PSCommand*Impl modules, the *ControlImpl modules and other Print Service control modules.>>
DIRECTORY
PSKMessages USING [Handle];
ControlMessages: CEDAR DEFINITIONS = BEGIN
Key: TYPE = {
BANNER MESSAGE KEYS
mBannerPrinter, mVersion, mBannerMasterError, mBannerExceptionTemplate, mBannerJobPurged, mBannerPurgedCommQ, mBannerPurgedFormatter, mBannerPurgedMarker, mBannerPurgedOtherQ, mBannerDocNotPrinted, mBannerTransmitError, mBannerFormattingError, mBannerMarkingError, mBannerOtherError, mDecompErrorNoResources, mDecompErrorParseFailure, mDecompErrorFeatureNotImplemented, mDecompErrorFontProblem, mDecompErrorNoDefaultFont, mDecompErrorPlateTooComplicated, mDecompErrorTooManyPlates, mDecompErrorLogicError, mDecompErrorUnknown, mOk,
INFORMATIONAL/ERROR MESSAGE KEYS
mSystemControl, mUINoDefaultFont, mMissingDefaultFont, mInsufficientFreePages, mCantRecover, mDocAborted, mSetTargetWarning, mRepairModeEntered, mRepairModeExited, mPrinterStatus2, mPrintEngineFailure, mEngineFailure, mForwardingError, mCatalogingFonts, mBeginFontRotation, mRotatingFont, mRotationDone, mRotationError, mInsufficientVolSpace, mUnknown, mBanshee, mTPLocalPrintCompleted, mTPRemotePrintCompleted, mPrinted, mTransmitted, mBusy, mNoAnswer, mTransmitError, mFaxFailure, mAborted
};
totalKeys: CARDINAL = ORD[LAST[Key]] - ORD[FIRST[Key]] + 1;
InitMessages: PROCEDURE RETURNS [controlMsgs: PSKMessages.Handle];
Initializes messages from code at runtime. Normally called only if message file is not available.
END. -- ControlMessages
LOG [when - who - what]
18-Jul-85 9:56:03 - Jacks - Created.
5-Nov-85 15:21:42 - Jacks - Removed GetHandle and added InitMessages.