📄 lpsmsg_string.h
字号:
/* * lpsmsg_string.h Define LAPS error code --> message mapping * * Produced By: LpsmsgConvert/LpsmsgString utility * * Ajay Kachrani, Tue Nov 8 20:27:58 EST 1988 * *//* * bit mask for stripping VMS severity code from error codes */#define SEVERITY_BITS 7/* * severity codes * *NOTE* values must match ordering of severity strings */#define SUCCESS 0#define INFO 1#define WARN 2#define ERROR 3#define FATAL 4/* * severity strings */char *severity_strings[] ={ "", "", "warning: ", "error: ", "error: "};struct laps_msg { short severity; unsigned long code; short FAOcount; char *text;};int VMSmcount = 285;struct laps_msg laps_msgs[] = {/* * generic messages - used by various components of the print server */SUCCESS, LPS$_NORMAL, 0, "Normal completion",SUCCESS, LPS$_SUCCESS, 0, "Successful completion",SUCCESS, LPS$_CONTINUE, 0, "Continue",WARN, LPS$_STRTOOLON, 0, "String is too long - it has been truncated",FATAL, LPS$_OSERROR, 1, "Operating System error detected - error was: %u",FATAL, LPS$_PROBUNKNWN, 0, "Problem Unknown",FATAL, LPS$_REBOOTREQD, 0, "Please reboot the PrintServer - FATAL ERROR",SUCCESS, LPS$_PENDING, 0, "$QIO operation is pending",SUCCESS, LPS$_USERDATA, 1, "userdata: %s",INFO, LPS$_SYNC, 0, "Last Printer Job Complete, Ready for next job",INFO, LPS$_JOBSTART, 1, "Job %u Start",INFO, LPS$_JOBFINISH, 1, "Job %u Finish",INFO, LPS$_JOBCONN, 1, "Job %u Connect",INFO, LPS$_PROCSTART, 1, "Process %s Started",INFO, LPS$_ABORTPEND, 1, "Pending Job %u Aborted",INFO, LPS$_SENDTIMOUT, 0, "Timeout trying to send a message",INFO, LPS$_PAUSE, 0, "Printer is paused (job is pending)",INFO, LPS$_RESUME, 0, "Printer is resuming",INFO, LPS$_CONNFAIL, 1, "Unable to connect to PrintServer %s ",WARN, LPS$_BADPKTTYP, 0, "Invalid packet type",WARN, LPS$_PAUSEABORT, 0, "Job aborted - Printer is still paused",WARN, LPS$_ACCPTDISA, 0, "Job acceptance is disabled - job rejected",ERROR, LPS$_SCINTERR, 0, "SC - Internal Error",ERROR, LPS$_NOPRTCRT, 1, "Unable to create port %s in Status Collector",ERROR, LPS$_NOPRCCRE, 1, "Unable to create process %s",ERROR, LPS$_INVCONRES, 0, "Invalid PrintServer response to connect",ERROR, LPS$_STNREJREQ, 0, "PrintServer rejected connect request",ERROR, LPS$_LPSPCLERR, 0, "Job aborted due to PrintServer protocol error",ERROR, LPS$_BADVERSION, 0, "Protocol version is not supported",ERROR, LPS$_INVJOBTER, 0, "Invalid PrintServer to response to end-of-job",ERROR, LPS$_JOBABORT, 1, "Job %u Aborted",ERROR, LPS$_ABORTSRVMGT, 1, "Job %u Aborted by Server Management",ERROR, LPS$_NOJOB, 0, "No Such Job",ERROR, LPS$_IDENTTIMOUT, 0, "Controller ident message never received",ERROR, LPS$_EVLLNKLST, 0, "Link lost to Supporting Host, disabling event logging",FATAL, LPS$_PROCABORT, 1, "Process %s aborted",FATAL, LPS$_LJCINTERR, 1, "Laps Init Process error, reason = %u",FATAL, LPS$_LJCMONERR, 1, "Laps Monitor Process error, reason = %u",FATAL, LPS$_LJCPROTERR, 1, "Laps Protocol Process error, reason = %u",FATAL, LPS$_TRNFAIL, 1, "Translation from %s to PostScript failed.",FATAL, LPS$_CANTUSETRN, 1, "Translator from %s to PostScript is unusable.",WARN, LPS$_INVCTRBLK, 0, "Invalid Control Block received by controller",WARN, LPS$_DISABLED, 0, "PrintServer is currently disabled and cannot accept jobs",INFO, LPS$_JOBIDENT, 3, "Server Job=%u Client Job=%u User=%s",WARN, LPS$_NOLOGNAM, 0, "cannot translate logical SYS$NODE (DECnet not running)",FATAL, LPS$_PSSFTERR, 0, "Fatal PrintServer Software Error",WARN, LPS$_UNCMPLTRNMH, 0, "Message handler Unable To Complete Transaction, Message May Be Lost",WARN, LPS$_UNCMPLTRN, 0, "Status Process Unable To Complete Transaction, Message May Be Lost",WARN, LPS$_UNCMPLQTRN, 0, "Query Process Unable to Complete Transaction, Response May Be Lost",WARN, LPS$_UNKMSG, 0, "Invalid message received from PrintServer",SUCCESS, LPS$_RESINPROG, 0, "Resource Fault in progress",SUCCESS, LPS$_PSWDOK, 0, "Valid password presented to PrintServer",SUCCESS, LPS$_RESAVAIL, 1, "Resource %s is available",INFO, LPS$_RESFAULT, 1, "Resource Fault - %s resource needed",INFO, LPS$_PSWDFAULT, 0, "Password Fault - password verification request",INFO, LPS$_TRAYFAULT, 0, "Tray Fault - tray switch request",WARN, LPS$_RESUNAVAIL, 1, "Resource %s Unavailable",WARN, LPS$_RESCMPLTE, 1, "Resource %s Complete",ERROR, LPS$_RESERR, 1, "Resource %s error",ERROR, LPS$_RESNOSERV, 0, "No Resource Server is currently available",ERROR, LPS$_RESABORT, 1, "Resource %s abort",WARN, LPS$_PSWDNOTOK, 0, "Invalid password presented to PrintServer",INFO, LPS$_SCSTART, 0, "Status Collector is started",INFO, LPS$_LAPSSTART, 0, "LAPS Process started",INFO, LPS$_FFMSTART, 0, "FFM Process started",INFO, LPS$_SMSTART, 0, "Server Management started",INFO, LPS$_MSHDLRSTART, 0, "Message Handler Process started",INFO, LPS$_PRINTSTART, 0, "Printing Subsystem started",ERROR, LPS$_KEYNOTREC, 1, "The keyword %s in the /PARAMETERS qualifier was not recognized",ERROR, LPS$_PARSYNERR, 1, "Syntax error in the /PARAMETERS qualifier at or near %s ",ERROR, LPS$_DEVSYNERR, 1, "Syntax error in /ON qualifier. %s not valid PrintServer name",ERROR, LPS$_INVCONSOLE, 0, "Invalid Console Device",ERROR, LPS$_TRNNOTFND, 1, "Translator from %s to PostScript not found ",ERROR, LPS$_INTERINPROG, 1, "Interrupt already in progress - request denied",ERROR, LPS$_PROTUNSUP, 1, "Function not supported in active LAPS protocol version",ERROR, LPS$_NOLAYUPDIR, 0, "Layup definition area is not accessible",ERROR, LPS$_NOLAYUPFIL, 1, "Layup definition module %s is not accessible",INFO, LPS$_SHEETLIMOBS, 0, "Sheet_limit parameter is obsolete. Page_limit is being used instead",INFO, LPS$_PRNAME, 1, "Message from PrintServer %s",WARN, LPS$_LAYUPIGNORED, 0, "Layup_definition parameter ignored; since Number_up=0 was specified",WARN, LPS$_NETRECOVER, 1, "Recoverable network error - print job %u requeued",ERROR, LPS$_RESUBMIT, 1, "Unrecoverable checkpointed job %u in hold - please resubmit",FATAL, LPS$_NETFAIL, 1, "Unrecoverable network error on job %u - queue restart required",WARN, LPS$_CANTCHECKPNT, 1, "Checkpointed job %u is requeued",WARN, LPS$_INTERRLOG, 0, "Event log Has Been Initialized",WARN, LPS$_UNLMTEXC, 0, "Unprivileged connection limit exceeded - retrying...",WARN, LPS$_SMRETRYCONN, 0, "PrintServer not responding to connect request - retrying...",WARN, LPS$_NOCHANGE, 0, "Current and new passwords must be different - password not changed",ERROR, LPS$_UNOPERRLOG, 1, "Unable to open Event Log file %s",WARN, LPS$_CLSERRLOG, 0, "Event Log has been Disabled and Closed",ERROR, LPS$_MNUNOTFND, 1, "Unable to open Menu Script file %s",ERROR, LPS$_INVNODEID, 0, "Nodeid has improper form",ERROR, LPS$_NOSUCHNODE, 0, "Node doesn't exist or isn't known to the Supporting Host",ERROR, LPS$_NOSUCHPS, 0, "Node is not a PrintServer",ERROR, LPS$_ENGNTRSPD, 0, "Print engine not responding to inquiry",ERROR, LPS$_INSYNFAIL, 0, "Initialization/Synchronization failed",ERROR, LPS$_CANTHAPPEN, 0, "Action should never happen",ERROR, LPS$_INVCOMMAND, 0, "Invalid command",ERROR, LPS$_INVCHAR, 0, "Invalid character entered",ERROR, LPS$_INVCLASS, 0, "Invalid class",ERROR, LPS$_INVPARM, 0, "Invalid parameter",ERROR, LPS$_INVPASSWRD, 0, "Invalid password",ERROR, LPS$_BADTIMVAL, 0, "Invalid time value",ERROR, LPS$_NOROOM, 0, "No room to add anything more",ERROR, LPS$_UNIMPL, 0, "Function is not implemented",ERROR, LPS$_USERABORT, 0, "Action aborted by the user",ERROR, LPS$_INVDATA, 0, "Invalid Data",ERROR, LPS$_NOTFOUND, 0, "Entry not found",ERROR, LPS$_OBJNOTFND, 0, "Object of the search was not found",ERROR, LPS$_INVOBJTYP, 0, "Invalid Object Type",ERROR, LPS$_INVOBJID, 0, "Invalid Object ID",ERROR, LPS$_INVDATTYP, 0, "Invalid Data Type",ERROR, LPS$_FAILED, 0, "Failed",ERROR, LPS$_SMNOTRSPD, 0, "Connection failure - PrintServer not responding",FATAL, LPS$_UNRECCDBFLD, 0, "Unrecognized CDB field - should never happen",FATAL, LPS$_NOPRIV, 0, "No privilege for attempted operation",FATAL, LPS$_NORSMJOB, 0, "No active Remote Server Management job on that PrintServer",FATAL, LPS$_RSMBUG, 0, "Fatal bug in the Remote Server Management code",WARN, LPS$_RONOCONN, 0, "Operator DISABLED - unable to make connection to Server",ERROR, LPS$_PRVCONEXC, 0, "PrintServer privileged connection limit exceeded",ERROR, LPS$_PSWDNOTVER, 0, "Password verification error - password not changed",ERROR, LPS$_NOCDBAVL, 0, "No CDB file available - PrintServer configuration not changed",ERROR, LPS$_CDBEOFFN, 0, "CDB has invalid format - PrintServer configuration not changed",ERROR, LPS$_UNRCHABL, 0, "PrintServer node is currently unreachable",
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -