home *** CD-ROM | disk | FTP | other *** search
- /* wn_msgd.h -- contains VCS error message definitions and informational
- message definitions
-
- DATE: April 2, 1987
- VERSION: v4.12
-
- */
-
- /*----------------------------------------------------------------------------*/
- /* Error Message definitions -- Applies to BOTH WFC and WFD */
- /*----------------------------------------------------------------------------*/
- /*reserve 0 for no error */
- #define MEMLACK 1 /*insufficient memory */
- #define BADHEAP 2 /*memory corrupted */
- #define READERR 3 /*error reading file */
- #define BAD_EOF 4 /*unexpected end of file */
- #define BADPARM 5 /*bad parameter value */
- #define ERR_OPEN 6 /*error opening file */
- #define ERR_CLOSE 7 /*error closing file */
- #define WRITEERR 8 /*error writing file */
- #define DISKFULL 9 /*full disk */
- #define MFILETOOBIG 10 /*too many lines in file */
- #define BADWNCOORD 11 /*window coordinates invalid */
- #define BADWNLOC 12 /*window member wn.location not 0 */
- #define BADWNDIM 13 /*window dimension is invalid */
- #define MFROWNEG 14 /*memory file row is negative */
- #define MFROWTOOBIG 15 /*memory file row number is too large */
- #define NOMFILEPTR 16 /*no mfile pointer installed in window*/
- #define ERR_POPEN 17 /*error opening pipe */
- #define ERR_PCLOSE 18 /*error closing pipe */
- #define NOWNIMAGE 19 /*no window image saved */
- #define BADSCRDIR 20 /*bad scroll direction */
- #define BADPTR 21 /*NULLP not allowed */
- #define AXESNOFIT 22 /*Axes do not fit within window */
- #define BADBARCOORD 23 /*Bar coordinates not valid */
- #define BADVMDIR 24 /*Bad video move direction */
- #define NOVIRVB 25 /*Unable to allocate virtual video buf*/
- #define NOACTVB 26 /*Unable to allocate actual video buf */
- #define NOTCBUF 27 /*Unable to allocate temporary buffer */
- /*to read in wfctermcap file */
- #define ERR_OWFCTC 28 /*Unable to open wfctermcap file */
- #define TERMNOTFOUND 29 /*Terminal not found in wfctermcap */
- #define TERMTOOLONG 30 /*Terminal definition too long */
- #define NOTERM 31 /*No TERM variable in environment */
- #define NODUMBTERM 32 /*Cannot use dumb terminals */
- #define NOTERMBUF 33 /*Unable to allocate buffer to hold */
- /*terminal definition */
- #define BADTERMDEF 34 /*Error in wfctermcap definition */
- #define BADWNSTRUC 35 /*Corrupted WINDOW structure */
- #define BADMFILESTRUC 36 /*Corrupted MFILE structure */
- #define TRSTRBAD 37 /*Traceback string has been corrupted */
- #define CALLLOGBAD 38 /*Call Log has been corrupted */
- #define NOVSBUF 45 /*Unable to allocate video string buf */
- #define NOCHANNEL 46 /*Unable to assign VMS input channel */
-
- #ifdef WFD_VER
-
- #define DCV_ERROR 50 /*data conversion error */
- #define BADPIC 51 /*invalid picture */
- #define BADFLDCOORD 52 /*invalid field coordinates */
- #define BADPRMPTCOORD 53 /*invalid prompt coordinates */
- #define BADTEXTCOORD 54 /*invalid text coordinates */
- #define BADDATE 55 /*invalid date string */
- #define BADJULDATE 56 /*invalid (negative) julian date */
- #define BADTIME 57 /*invalid time string */
- #define BADSECONDS 58 /*invalid (negative) number of seconds*/
- #define BADMENUDEF 59 /*invalid menu field definition */
- #define BADMENUFORM 60 /*invalid menu form */
- #define NULLPFI 61 /*attempted to invoke a NULL PFI */
- #define NODCVFUNC 62 /*no data conversion function */
- #define NOPICSYMFUNC 63 /*no picture symbol function */
- #define NONEXISTFLD 64 /*non-existent field */
- #define NOFREESTDFRM 65 /*cannot free standard form */
- #define BADTEXT 66 /*an invalid text string was passed */
- #define BADFLDSTRUC 67 /*Corrupted DFIELD structure */
- #define BADFRMSTRUC 68 /*Corrupted DFORM structure */
- #define ALLFLDSPROT 69 /*All fields in form protected */
- #define FULLTABLE 70 /*Function table full */
- #define FMNOTUP 71 /*Form is not on screen */
-
- #endif
-
-
-
- /*----------------------------------------------------------------------------*/
- /* WFC Informational message definitions */
- /*----------------------------------------------------------------------------*/
- #define TOFMSG 0 /*Top of file message */
- #define BOFMSG 1 /*Bottom of file message */
- #define ERRWNNAME 2 /*Error window name in v_err() */
- #define CALLWNNAME 3 /*Call log window name in v_err() */
- #define ERRMSGPRMPT 4 /*Error message prompt in v_err() */
- #define TRPATHPRMPT 5 /*Trace path prompt in v_err() */
- #define SCROLLMSG 6 /*Scrolling message in v_err() */
- #define CONTMSG 7 /*Continuation message in v_err and */
- /*_push_tr() */
- #define TRBUFFULL 8 /*Traceback buffer full in _push_tr() */
- #define DUMPWNNAME 9 /*Dump window name in v_err() */
-
-
-
- #ifdef WFD_VER
- /*----------------------------------------------------------------------------*/
- /* WFD Informational message definitions */
- /*----------------------------------------------------------------------------*/
- #define MULT_SIGN 0 /* Multiple signs not permitted */
- #define SIGN_FIRST 1 /* Sign must occur first */
- #define NO_BLANKS 2 /* Embedded blanks not permitted */
- #define NO_DECPOINT 3 /* Decimal point not allowed */
- #define NO_EXP 4 /* Exponential notation not allowed */
- #define NUMTOOBIG 5 /* Number is too large */
- #define PROT_FIELD 6 /* This is a protected field */
- #define EXIT_MSG 7 /* Do you want to exit this form */
- #define INV_TIME 8 /* Invalid time */
- #define FIELD_REQ 9 /* Field entry required */
- #define MANY_POINTS 10 /* Cannot contain multiple points */
- #define POINTINEXP 11 /* Point cannot occur in exponent */
- #define MANY_EXP 12 /* Cannot contain multiple exponent */
- #define INV_EXP 13 /* Exponent is too large/small */
- #define NOT_FILLED 14 /* Entry must completely fill field */
- #define INV_DATE 15 /* Invalid date - date must be */
- #define US_DATE 16 /* mm/dd/yy */
- #define EUR_DATE 17 /* dd/mm/yy */
- #define INV_BOOL 18 /* Entry must be T/F or Y/N */
- #define EXHLPMSG 19 /* Press the Help Key to exit help */
- #define INFO_MSG 20 /* Use cursor pad keys to scroll */
- #define NO_HELP 21 /* No help available. */
- #define NOMEMVAL 22 /* Insufficient memory for validation */
- #define NOCHOICEMSG 23 /* No choice available. */
- #define CHC_MSG 24 /* Cursor keys to ... exit choice menu*/
- #define NORTJUST 25 /* Right justification is not possible*/
-
- #endif