home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / WN_MSGD.H < prev   
Encoding:
C/C++ Source or Header  |  1987-04-01  |  7.0 KB  |  134 lines

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