1: /* $Header: reason.h,v 10.3 86/02/01 15:47:29 tony Rel $ */
   2: /* reason.h	Interrupt reason values
   3:  *
   4:  * Author:	Paul J. Asente
   5:  * 		Digital Equipment Corporation
   6:  * 		Western Reseach Lab
   7:  * Date:	June 1983
   8:  */
   9: 
  10: /****************************************************************************
  11:  *									    *
  12:  *  Copyright (c) 1983, 1984 by						    *
  13:  *  DIGITAL EQUIPMENT CORPORATION, Maynard, Massachusetts.		    *
  14:  *  All rights reserved.						    *
  15:  * 									    *
  16:  *  This software is furnished on an as-is basis and may be used and copied *
  17:  *  only with inclusion of the above copyright notice. This software or any *
  18:  *  other copies thereof may be provided or otherwise made available to     *
  19:  *  others only for non-commercial purposes.  No title to or ownership of   *
  20:  *  the software is hereby transferred.					    *
  21:  * 									    *
  22:  *  The information in this software is  subject to change without notice   *
  23:  *  and  should  not  be  construed as  a commitment by DIGITAL EQUIPMENT   *
  24:  *  CORPORATION.							    *
  25:  * 									    *
  26:  *  DIGITAL assumes no responsibility for the use  or  reliability of its   *
  27:  *  software on equipment which is not supplied by DIGITAL.		    *
  28:  * 									    *
  29:  *									    *
  30:  ****************************************************************************/
  31: 
  32: #ifndef VS_REASONS
  33: #define VS_REASONS
  34: 
  35: #define INT_ID      0x0001
  36: #define INT_ID_MSG  "initialization done"
  37: #define INT_CD      0x0002
  38: #define INT_CD_MSG  "command done"
  39: #define INT_SE      0x0004
  40: #define INT_SE_MSG  "started executing"
  41: #define INT_BE      0x0008
  42: #define INT_BE_MSG  "button event"
  43: #define INT_CM      0x0010
  44: #define INT_CM_MSG  "cursor moved"
  45: #define INT_TM      0x0020
  46: #define INT_TM_MSG  "tablet moved"
  47: #define INT_MM      0x0040
  48: #define INT_MM_MSG  "mouse moved"
  49: #define INT_PD      0x0080
  50: #define INT_PD_MSG  "powerup done"
  51: #define INT_ERR     -128
  52: #define INT_ERR_MSG "error encountered"
  53: 
  54: #define ERR_NYI     INT_ERR+0
  55: #define ERR_NYI_MSG "not yet implemented"
  56: #define ERR_IFC     INT_ERR+1
  57: #define ERR_IFC_MSG "invalid function code"
  58: #define ERR_ICC     INT_ERR+2
  59: #define ERR_ICC_MSG "invalid command code"
  60: #define ERR_RN      INT_ERR+3
  61: #define ERR_RN_MSG  "bus error: non-existant memory"
  62: #define ERR_RO      INT_ERR+4
  63: #define ERR_RO_MSG  "bus error: retry overflow"
  64: #define ERR_LD      INT_ERR+5
  65: #define ERR_LD_MSG  "bus error: link down"
  66: #define ERR_BE      INT_ERR+6
  67: #define ERR_BE_MSG  "bus error: unexplained"
  68: #define ERR_AE      INT_ERR+7
  69: #define ERR_AE_MSG  "address error"
  70: #define ERR_SI      INT_ERR+8
  71: #define ERR_SI_MSG  "spurious interrupt"
  72: #define ERR_II      INT_ERR+9
  73: #define ERR_II_MSG  "illegal instruction"
  74: #define ERR_BN      INT_ERR+10
  75: #define ERR_BN_MSG  "bba: non-existant memory"
  76: #define ERR_BNI     INT_ERR+11
  77: #define ERR_BNI_MSG "bba not installed"
  78: #define ERR_KBO     INT_ERR+12
  79: #define ERR_KBO_MSG "keyboard buffer overflow"
  80: #define ERR_TBO     INT_ERR+13
  81: #define ERR_TBO_MSG "tablet buffer overflow"
  82: #define ERR_BBO     INT_ERR+14
  83: #define ERR_BBO_MSG "button buffer overflow"
  84: #define ERR_ITP     INT_ERR+15
  85: #define ERR_ITP_MSG "invalid tablet packet"
  86: 
  87: #define ERR_ISRCMB  INT_ERR+32
  88: #define ERR_ISRCMB_MSG  "invalid src modifier bits"
  89: #define ERR_ISRCBW  INT_ERR+33
  90: #define ERR_ISRCBW_MSG  "invalid src bitmap width"
  91: #define ERR_ISRCBH  INT_ERR+34
  92: #define ERR_ISRCBH_MSG  "invalid src bitmap height"
  93: #define ERR_ISRCC   INT_ERR+35
  94: #define ERR_ISRCC_MSG   "invalid src constant"
  95: #define ERR_ISRCBD  INT_ERR+36
  96: #define ERR_ISRCBD_MSG  "invalid src bitmap depth"
  97: #define ERR_ISRCD   INT_ERR+37
  98: #define ERR_ISRCD_MSG   "invalid src bitmap dimension"
  99: 
 100: #define ERR_IMSKMB  INT_ERR+38
 101: #define ERR_IMSKMB_MSG  "invalid msk modifier bits"
 102: #define ERR_IMSKBW  INT_ERR+39
 103: #define ERR_IMSKBW_MSG  "invalid msk bitmap width"
 104: #define ERR_IMSKBH  INT_ERR+40
 105: #define ERR_IMSKBH_MSG  "invalid msk bitmap height"
 106: #define ERR_IMSKBD  INT_ERR+41
 107: #define ERR_IMSKBD_MSG  "invalid msk bitmap depth"
 108: 
 109: #define ERR_IDSTMB  INT_ERR+44
 110: #define ERR_IDSTMB_MSG  "invalid dst-offset modifier"
 111: #define ERR_IDSTBW  INT_ERR+45
 112: #define ERR_IDSTBW_MSG  "invalid dst bitmap width"
 113: #define ERR_IDSTBH  INT_ERR+46
 114: #define ERR_IDSTBH_MSG  "invalid dst bitmap height"
 115: #define ERR_IDSTBD  INT_ERR+47
 116: #define ERR_IDSTBD_MSG  "invalid dst bitmap depth"
 117: 
 118: #define ERR_NOAREA  INT_ERR+48
 119: #define ERR_NOAREA_MSG  "no resultant area"
 120: 
 121: #define ERR_IMAPMB  INT_ERR+50
 122: #define ERR_IMAPMB_MSG  "invalid map modifier bits"
 123: #define ERR_IMAPFC  INT_ERR+51
 124: #define ERR_IMAPFC_MSG  "invalid map function code"
 125: #define ERR_ZIMAP   INT_ERR+52
 126: #define ERR_ZIMAP_MSG   "depth incompatible with map"
 127: #define ERR_ZCIMAP  INT_ERR+53
 128: #define ERR_ZCIMAP_MSG  "depth combination incompatible with map"
 129: 
 130: #define ERR_ICLPMB  INT_ERR+54
 131: #define ERR_ICLPMB_MSG  "invalid clipr modifier bits"
 132: #define ERR_ICLPRC  INT_ERR+55
 133: #define ERR_ICLPRC_MSG  "invalid clipr count"
 134: 
 135: #define ERR_SMC_ITC INT_ERR+56
 136: #define ERR_SMC_ITC_MSG "invalid tracking ratio"
 137: #define ERR_ITC_MULT    INT_ERR+57
 138: #define ERR_ITC_MULT_MSG "invalid tracking multiplier"
 139: #define ERR_ITC_DIV INT_ERR+58
 140: #define ERR_ITC_DIV_MSG "invalid tracking divisor"
 141: 
 142: #define ERR_ICD     INT_ERR+59
 143: #define ERR_ICD_MSG "invalid cursor device"
 144: #define ERR_MO_IBC  INT_ERR+60
 145: #define ERR_MO_IBC_MSG  "invalid byte count"
 146: #define ERR_MO_IOT  INT_ERR+61
 147: #define ERR_MO_IOT_MSG  "invalid object type"
 148: #define ERR_MO_IDT  INT_ERR+62
 149: #define ERR_MO_IDT_MSG  "invalid device type"
 150: #define ERR_IPC     INT_ERR+63
 151: #define ERR_IPC_MSG "invalid path count"
 152: 
 153: #define ERR_DC_IPC  INT_ERR+64
 154: #define ERR_DC_IPC_MSG  "invalid path count"
 155: #define ERR_DC_IPSL INT_ERR+65
 156: #define ERR_DC_IPSL_MSG "invalid pattern string length"
 157: #define ERR_DC_IPSM INT_ERR+66
 158: #define ERR_DC_IPSM_MSG "invalid pattern string multiplier"
 159: #define ERR_DC_ICF  INT_ERR+67
 160: #define ERR_DC_ICF_MSG  "invalid closed figure"
 161: #define ERR_DC_IPSP INT_ERR+68
 162: #define ERR_DC_IPSP_MSG "invalid pattern position"
 163: #define ERR_DC_IPSMB    INT_ERR+69
 164: #define ERR_DC_IPSMB_MSG "invalid pattern string modifier bits"
 165: #define ERR_DC_IPMMB    INT_ERR+70
 166: #define ERR_DC_IPMMB_MSG "invalid pattern mode modifier bits"
 167: #define ERR_DC_IPSC INT_ERR+71
 168: #define ERR_DC_IPSC_MSG "invalid pattern count"
 169: #define ERR_DC_ISSRCBW  INT_ERR+72
 170: #define ERR_DC_ISSRCBW_MSG "invalid second src bitmap width"
 171: #define ERR_DC_ISSRCBH  INT_ERR+73
 172: #define ERR_DC_ISSRCBH_MSG "invalid second src bitmap height"
 173: #define ERR_DC_ISSRCBD  INT_ERR+74
 174: #define ERR_DC_ISSRCBD_MSG "invalid second src bitmap depth"
 175: #define ERR_DC_ISSRCC   INT_ERR+75
 176: #define ERR_DC_ISSRCC_MSG "invalid second src constant"
 177: #define ERR_DC_IDPM INT_ERR+76
 178: #define ERR_DC_IDPM_MSG "incompatible drawing/pattern mode"
 179: 
 180: #define ERR_PT_ICSL INT_ERR+80
 181: #define ERR_PT_ICSL_MSG "invalid control string length"
 182: #define ERR_PT_ICSO INT_ERR+81
 183: #define ERR_PT_ICSO_MSG "invalid control string opcode"
 184: #define ERR_PT_ICSP INT_ERR+82
 185: #define ERR_PT_ICSP_MSG "invalid control string parameter"
 186: #define ERR_PT_ITSL INT_ERR+83
 187: #define ERR_PT_ITSL_MSG "invalid text string length"
 188: #define ERR_PT_ICI  INT_ERR+84
 189: #define ERR_PT_ICI_MSG  "invalid character index"
 190: #define ERR_PT_TSE  INT_ERR+85
 191: #define ERR_PT_TSE_MSG  "test string exhausted"
 192: #define ERR_PT_NFP  INT_ERR+86
 193: #define ERR_PT_NFP_MSG  "no font present"
 194: #define ERR_PT_ISRCFW   INT_ERR+87
 195: #define ERR_PT_ISRCFW_MSG "invalid src font width"
 196: #define ERR_PT_ISRCFH   INT_ERR+88
 197: #define ERR_PT_ISRCFH_MSG "invalid src font height"
 198: #define ERR_PT_ISRCFD   INT_ERR+89
 199: #define ERR_PT_ISRCFD_MSG "invalid src font depth"
 200: #define ERR_PT_IMSKFW   INT_ERR+90
 201: #define ERR_PT_IMSKFW_MSG "invalid msk font width"
 202: #define ERR_PT_IMSKFH   INT_ERR+91
 203: #define ERR_PT_IMSKFH_MSG "invalid msk font height"
 204: #define ERR_PT_IMSKFD   INT_ERR+92
 205: #define ERR_PT_IMSKFD_MSG "invalid msk font depth"
 206: #define ERR_PT_CSMF INT_ERR+93
 207: #define ERR_PT_CSMF_MSG "conflicting src/msk fonts"
 208: 
 209: #define ERR_FA_ISRCB    INT_ERR+96
 210: #define ERR_FA_ISRCB_MSG "invalid src bitmap"
 211: #define ERR_FA_SPIOB    INT_ERR+98
 212: #define ERR_FA_SPIOB_MSG "seed point is on boundary"
 213: #define ERR_FA_SO   INT_ERR+99
 214: #define ERR_FA_SO_MSG   "stack overflow"
 215: #define ERR_FA_IBMMB    INT_ERR+100
 216: #define ERR_FA_IBMMB_MSG "invalid boundary map modifier bits"
 217: 
 218: #define ERR_FP_ISRCB    INT_ERR+112
 219: #define ERR_FP_ISRCB_MSG "invalid src bitmap"
 220: #define ERR_FP_SO   INT_ERR+113
 221: #define ERR_FP_SO_MSG   "stack overflow"
 222: #define ERR_FP_IPC  INT_ERR+114
 223: #define ERR_FP_IPC_MSG  "invalid point count"
 224: #define ERR_FP_ICF  INT_ERR+115
 225: #define ERR_FP_ICF_MSG  "invalid closed figure"
 226: 
 227: #define ERR_68K     INT_ERR+129
 228: #define ERR_68K_MSG "68000 cpu"
 229: #define ERR_RC      INT_ERR+130
 230: #define ERR_RC_MSG  "rom checksum"
 231: #define ERR_PR      INT_ERR+131
 232: #define ERR_PR_MSG  "program ram"
 233: #define ERR_CRT     INT_ERR+132
 234: #define ERR_CRT_MSG "crtc register"
 235: #define ERR_TU      INT_ERR+133
 236: #define ERR_TU_MSG  "tablet usart"
 237: #define ERR_KU      INT_ERR+134
 238: #define ERR_KU_MSG  "keyboard usart"
 239: #define ERR_FOE     INT_ERR+135
 240: #define ERR_FOE_MSG "fotr electrical loop back"
 241: #define ERR_VTO     INT_ERR+136
 242: #define ERR_VTO_MSG "vsync time out"
 243: #define ERR_SB      INT_ERR+137
 244: #define ERR_SB_MSG  "screen buffer"
 245: #define ERR_BS      INT_ERR+138
 246: #define ERR_BS_MSG  "bba scratchpad ram"
 247: #define ERR_BC      INT_ERR+139
 248: #define ERR_BC_MSG  "bba copyarea command"
 249: #define ERR_TTO     INT_ERR+140
 250: #define ERR_TTO_MSG "tablet time out"
 251: #define ERR_FOO     INT_ERR+141
 252: #define ERR_FOO_MSG "fotr optical loop back"
 253: #define ERR_KTO     INT_ERR+142
 254: #define ERR_KTO_MSG "keyboard time out"
 255: #define ERR_KST     INT_ERR+143
 256: #define ERR_KST_MSG "keyboard self-test"
 257: 
 258: #define ERR_LDC_IATRV   INT_ERR+160
 259: #define ERR_LDC_IATRV_MSG "invalid cursor attribute value"
 260: #define ERR_LDC_ICH INT_ERR+161
 261: #define ERR_LDC_ICH_MSG "invalid cursor height"
 262: #define ERR_LDC_ICW INT_ERR+162
 263: #define ERR_LDC_ICW_MSG "invalid cursor width"
 264: #define ERR_NOVALCUR    INT_ERR+163
 265: #define ERR_NOVALCUR_MSG "no valid cursor defined"
 266: 
 267: #define NUM_ERR_CODES   108
 268: 
 269: #endif

Defined macros

ERR_68K defined in line 227; used 1 times
ERR_68K_MSG defined in line 228; used 1 times
ERR_AE defined in line 68; used 1 times
ERR_AE_MSG defined in line 69; used 1 times
ERR_BBO defined in line 82; used 1 times
ERR_BBO_MSG defined in line 83; used 1 times
ERR_BC defined in line 247; used 1 times
ERR_BC_MSG defined in line 248; used 1 times
ERR_BE defined in line 66; used 1 times
ERR_BE_MSG defined in line 67; used 1 times
ERR_BN defined in line 74; used 1 times
ERR_BNI defined in line 76; used 1 times
ERR_BNI_MSG defined in line 77; used 1 times
ERR_BN_MSG defined in line 75; used 1 times
ERR_BS defined in line 245; used 1 times
ERR_BS_MSG defined in line 246; used 1 times
ERR_CRT defined in line 233; used 1 times
ERR_CRT_MSG defined in line 234; used 1 times
ERR_DC_ICF defined in line 159; used 1 times
ERR_DC_ICF_MSG defined in line 160; used 1 times
ERR_DC_IDPM defined in line 177; used 1 times
ERR_DC_IDPM_MSG defined in line 178; used 1 times
ERR_DC_IPC defined in line 153; used 1 times
ERR_DC_IPC_MSG defined in line 154; used 1 times
ERR_DC_IPMMB defined in line 165; used 1 times
ERR_DC_IPMMB_MSG defined in line 166; used 1 times
ERR_DC_IPSC defined in line 167; used 1 times
ERR_DC_IPSC_MSG defined in line 168; used 1 times
ERR_DC_IPSL defined in line 155; used 1 times
ERR_DC_IPSL_MSG defined in line 156; used 1 times
ERR_DC_IPSM defined in line 157; used 1 times
ERR_DC_IPSMB defined in line 163; used 1 times
ERR_DC_IPSMB_MSG defined in line 164; used 1 times
ERR_DC_IPSM_MSG defined in line 158; used 1 times
ERR_DC_IPSP defined in line 161; used 1 times
ERR_DC_IPSP_MSG defined in line 162; used 1 times
ERR_DC_ISSRCBD defined in line 173; used 1 times
ERR_DC_ISSRCBD_MSG defined in line 174; used 1 times
ERR_DC_ISSRCBH defined in line 171; used 1 times
ERR_DC_ISSRCBH_MSG defined in line 172; used 1 times
ERR_DC_ISSRCBW defined in line 169; used 1 times
ERR_DC_ISSRCBW_MSG defined in line 170; used 1 times
ERR_DC_ISSRCC defined in line 175; used 1 times
ERR_DC_ISSRCC_MSG defined in line 176; used 1 times
ERR_FA_IBMMB defined in line 215; used 1 times
ERR_FA_IBMMB_MSG defined in line 216; used 1 times
ERR_FA_ISRCB defined in line 209; used 1 times
ERR_FA_ISRCB_MSG defined in line 210; used 1 times
ERR_FA_SO defined in line 213; used 1 times
ERR_FA_SO_MSG defined in line 214; used 1 times
ERR_FA_SPIOB defined in line 211; used 1 times
ERR_FA_SPIOB_MSG defined in line 212; used 1 times
ERR_FOE defined in line 239; used 1 times
ERR_FOE_MSG defined in line 240; used 1 times
ERR_FOO defined in line 251; used 1 times
ERR_FOO_MSG defined in line 252; used 1 times
ERR_FP_ICF defined in line 224; used 1 times
ERR_FP_ICF_MSG defined in line 225; used 1 times
ERR_FP_IPC defined in line 222; used 1 times
ERR_FP_IPC_MSG defined in line 223; used 1 times
ERR_FP_ISRCB defined in line 218; used 1 times
ERR_FP_ISRCB_MSG defined in line 219; used 1 times
ERR_FP_SO defined in line 220; used 1 times
ERR_FP_SO_MSG defined in line 221; used 1 times
ERR_ICC defined in line 58; used 1 times
ERR_ICC_MSG defined in line 59; used 1 times
ERR_ICD defined in line 142; used 1 times
ERR_ICD_MSG defined in line 143; used 1 times
ERR_ICLPMB defined in line 130; used 1 times
ERR_ICLPMB_MSG defined in line 131; used 1 times
ERR_ICLPRC defined in line 132; used 1 times
ERR_ICLPRC_MSG defined in line 133; used 1 times
ERR_IDSTBD defined in line 115; used 1 times
ERR_IDSTBD_MSG defined in line 116; used 1 times
ERR_IDSTBH defined in line 113; used 1 times
ERR_IDSTBH_MSG defined in line 114; used 1 times
ERR_IDSTBW defined in line 111; used 1 times
ERR_IDSTBW_MSG defined in line 112; used 1 times
ERR_IDSTMB defined in line 109; used 1 times
ERR_IDSTMB_MSG defined in line 110; used 1 times
ERR_IFC defined in line 56; used 1 times
ERR_IFC_MSG defined in line 57; used 1 times
ERR_II defined in line 72; used 1 times
ERR_II_MSG defined in line 73; used 1 times
ERR_IMAPFC defined in line 123; used 1 times
ERR_IMAPFC_MSG defined in line 124; used 1 times
ERR_IMAPMB defined in line 121; used 1 times
ERR_IMAPMB_MSG defined in line 122; used 1 times
ERR_IMSKBD defined in line 106; used 1 times
ERR_IMSKBD_MSG defined in line 107; used 1 times
ERR_IMSKBH defined in line 104; used 1 times
ERR_IMSKBH_MSG defined in line 105; used 1 times
ERR_IMSKBW defined in line 102; used 1 times
ERR_IMSKBW_MSG defined in line 103; used 1 times
ERR_IMSKMB defined in line 100; used 1 times
ERR_IMSKMB_MSG defined in line 101; used 1 times
ERR_IPC defined in line 150; used 1 times
ERR_IPC_MSG defined in line 151; used 1 times
ERR_ISRCBD defined in line 95; used 1 times
ERR_ISRCBD_MSG defined in line 96; used 1 times
ERR_ISRCBH defined in line 91; used 1 times
ERR_ISRCBH_MSG defined in line 92; used 1 times
ERR_ISRCBW defined in line 89; used 1 times
ERR_ISRCBW_MSG defined in line 90; used 1 times
ERR_ISRCC defined in line 93; used 1 times
ERR_ISRCC_MSG defined in line 94; used 1 times
ERR_ISRCD defined in line 97; used 1 times
ERR_ISRCD_MSG defined in line 98; used 1 times
ERR_ISRCMB defined in line 87; used 1 times
ERR_ISRCMB_MSG defined in line 88; used 1 times
ERR_ITC_DIV defined in line 139; used 1 times
ERR_ITC_DIV_MSG defined in line 140; used 1 times
ERR_ITC_MULT defined in line 137; used 1 times
ERR_ITC_MULT_MSG defined in line 138; used 1 times
ERR_ITP defined in line 84; used 1 times
ERR_ITP_MSG defined in line 85; used 1 times
ERR_KBO defined in line 78; used 1 times
ERR_KBO_MSG defined in line 79; used 1 times
ERR_KST defined in line 255; used 1 times
ERR_KST_MSG defined in line 256; used 1 times
ERR_KTO defined in line 253; used 1 times
ERR_KTO_MSG defined in line 254; used 1 times
ERR_KU defined in line 237; used 1 times
ERR_KU_MSG defined in line 238; used 1 times
ERR_LD defined in line 64; used 1 times
ERR_LDC_IATRV defined in line 258; used 1 times
ERR_LDC_IATRV_MSG defined in line 259; used 1 times
ERR_LDC_ICH defined in line 260; used 1 times
ERR_LDC_ICH_MSG defined in line 261; used 1 times
ERR_LDC_ICW defined in line 262; used 1 times
ERR_LDC_ICW_MSG defined in line 263; used 1 times
ERR_LD_MSG defined in line 65; used 1 times
ERR_MO_IBC defined in line 144; used 1 times
ERR_MO_IBC_MSG defined in line 145; used 1 times
ERR_MO_IDT defined in line 148; used 1 times
ERR_MO_IDT_MSG defined in line 149; used 1 times
ERR_MO_IOT defined in line 146; used 1 times
ERR_MO_IOT_MSG defined in line 147; used 1 times
ERR_NOAREA defined in line 118; used 1 times
ERR_NOAREA_MSG defined in line 119; used 1 times
ERR_NOVALCUR defined in line 264; used 1 times
ERR_NOVALCUR_MSG defined in line 265; used 1 times
ERR_NYI defined in line 54; used 1 times
ERR_NYI_MSG defined in line 55; used 1 times
ERR_PR defined in line 231; used 1 times
ERR_PR_MSG defined in line 232; used 1 times
ERR_PT_CSMF defined in line 206; used 1 times
ERR_PT_CSMF_MSG defined in line 207; used 1 times
ERR_PT_ICI defined in line 188; used 1 times
ERR_PT_ICI_MSG defined in line 189; used 1 times
ERR_PT_ICSL defined in line 180; used 1 times
ERR_PT_ICSL_MSG defined in line 181; used 1 times
ERR_PT_ICSO defined in line 182; used 1 times
ERR_PT_ICSO_MSG defined in line 183; used 1 times
ERR_PT_ICSP defined in line 184; used 1 times
ERR_PT_ICSP_MSG defined in line 185; used 1 times
ERR_PT_IMSKFD defined in line 204; used 1 times
ERR_PT_IMSKFD_MSG defined in line 205; used 1 times
ERR_PT_IMSKFH defined in line 202; used 1 times
ERR_PT_IMSKFH_MSG defined in line 203; used 1 times
ERR_PT_IMSKFW defined in line 200; used 1 times
ERR_PT_IMSKFW_MSG defined in line 201; used 1 times
ERR_PT_ISRCFD defined in line 198; used 1 times
ERR_PT_ISRCFD_MSG defined in line 199; used 1 times
ERR_PT_ISRCFH defined in line 196; used 1 times
ERR_PT_ISRCFH_MSG defined in line 197; used 1 times
ERR_PT_ISRCFW defined in line 194; used 1 times
ERR_PT_ISRCFW_MSG defined in line 195; used 1 times
ERR_PT_ITSL defined in line 186; used 1 times
ERR_PT_ITSL_MSG defined in line 187; used 1 times
ERR_PT_NFP defined in line 192; used 1 times
ERR_PT_NFP_MSG defined in line 193; used 1 times
ERR_PT_TSE defined in line 190; used 1 times
ERR_PT_TSE_MSG defined in line 191; used 1 times
ERR_RC defined in line 229; used 1 times
ERR_RC_MSG defined in line 230; used 1 times
ERR_RN defined in line 60; used 1 times
ERR_RN_MSG defined in line 61; used 1 times
ERR_RO defined in line 62; used 1 times
ERR_RO_MSG defined in line 63; used 1 times
ERR_SB defined in line 243; used 1 times
ERR_SB_MSG defined in line 244; used 1 times
ERR_SI defined in line 70; used 1 times
ERR_SI_MSG defined in line 71; used 1 times
ERR_SMC_ITC defined in line 135; used 1 times
ERR_SMC_ITC_MSG defined in line 136; used 1 times
ERR_TBO defined in line 80; used 1 times
ERR_TBO_MSG defined in line 81; used 1 times
ERR_TTO defined in line 249; used 1 times
ERR_TTO_MSG defined in line 250; used 1 times
ERR_TU defined in line 235; used 1 times
ERR_TU_MSG defined in line 236; used 1 times
ERR_VTO defined in line 241; used 1 times
ERR_VTO_MSG defined in line 242; used 1 times
ERR_ZCIMAP defined in line 127; used 1 times
ERR_ZCIMAP_MSG defined in line 128; used 1 times
ERR_ZIMAP defined in line 125; used 1 times
ERR_ZIMAP_MSG defined in line 126; used 1 times
INT_BE defined in line 41; used 1 times
INT_BE_MSG defined in line 42; used 1 times
INT_CD defined in line 37; used 1 times
INT_CD_MSG defined in line 38; used 1 times
INT_CM defined in line 43; used 1 times
INT_CM_MSG defined in line 44; used 1 times
INT_ERR defined in line 51; used 101 times
INT_ERR_MSG defined in line 52; never used
INT_ID defined in line 35; used 1 times
INT_ID_MSG defined in line 36; used 1 times
INT_MM defined in line 47; used 1 times
INT_MM_MSG defined in line 48; used 1 times
INT_PD defined in line 49; used 1 times
INT_PD_MSG defined in line 50; used 1 times
INT_SE defined in line 39; used 1 times
INT_SE_MSG defined in line 40; used 1 times
INT_TM defined in line 45; used 1 times
INT_TM_MSG defined in line 46; used 1 times
NUM_ERR_CODES defined in line 267; used 2 times
VS_REASONS defined in line 33; used 1 times
  • in line 32

Usage of this include

Last modified: 1986-02-01
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 3579
Valid CSS Valid XHTML 1.0 Strict