home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / f / bad.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  108 lines

  1. /* bad.h -- Public #include File (module.h template V1.0)
  2.    Copyright (C) 1995 Free Software Foundation, Inc.
  3.    Contributed by James Craig Burley (burley@gnu.ai.mit.edu).
  4.  
  5. This file is part of GNU Fortran.
  6.  
  7. GNU Fortran is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU Fortran is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Fortran; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    Owning Modules:
  22.       bad.c
  23.  
  24.    Modifications:
  25. */
  26.  
  27. /* Allow multiple inclusion to work. */
  28.  
  29. #ifndef _H_f_bad
  30. #define _H_f_bad
  31.  
  32. /* Simple definitions and enumerations. */
  33.  
  34. typedef enum
  35.   {
  36. #define FFEBAD_MSGS1(KWD,SEV,MSG) KWD,
  37. #define FFEBAD_MSGS2(KWD,SEV,LMSG,SMSG) KWD,
  38. #include "bad.def"
  39. #undef FFEBAD_MSGS1
  40. #undef FFEBAD_MSGS2
  41.     FFEBAD
  42.   } ffebad;
  43.  
  44. typedef enum
  45.   {
  46.  
  47.     /* Order important; must be increasing severity. */
  48.  
  49.     FFEBAD_severityINFORMATIONAL,    /* User notice. */
  50.     FFEBAD_severityTRIVIAL,    /* Internal notice. */
  51.     FFEBAD_severityWARNING,    /* User warning. */
  52.     FFEBAD_severityPECULIAR,    /* Internal warning. */
  53.     FFEBAD_severityPEDANTIC,    /* Pedantic, could be warning or error. */
  54.     FFEBAD_severityFATAL,    /* User error. */
  55.     FFEBAD_severityWEIRD,    /* Internal error. */
  56.     FFEBAD_severitySEVERE,    /* User error, cannot continue. */
  57.     FFEBAD_severityDISASTER,    /* Internal error, cannot continue. */
  58.     FFEBAD_severity
  59.   } ffebadSeverity;
  60.  
  61. /* Typedefs. */
  62.  
  63. typedef unsigned char ffebadIndex;
  64.  
  65. /* Include files needed by this one. */
  66.  
  67. #include "where.h"
  68.  
  69. /* Structure definitions. */
  70.  
  71.  
  72. /* Global objects accessed by users of this module. */
  73.  
  74. extern bool ffebad_is_inhibited_;
  75.  
  76. /* Declare functions with prototypes. */
  77.  
  78. void ffebad_finish (void);
  79. void ffebad_here (ffebadIndex i, ffewhereLine wl, ffewhereColumn wc);
  80. void ffebad_init_0 (void);
  81. bool ffebad_is_fatal (ffebad errnum);
  82. ffebadSeverity ffebad_severity (ffebad errnum);
  83. bool ffebad_start_ (bool lex_override, ffebad errnum, ffebadSeverity sev,
  84.             char *message);
  85. void ffebad_string (char *string);
  86.  
  87. /* Define macros. */
  88.  
  89. #define ffebad_inhibit() (ffebad_is_inhibited_)
  90. #define ffebad_init_1()
  91. #define ffebad_init_2()
  92. #define ffebad_init_3()
  93. #define ffebad_init_4()
  94. #define ffebad_set_inhibit(f) (ffebad_is_inhibited_ = (f))
  95. #define ffebad_start(e) ffebad_start_ (FALSE, (e), FFEBAD_severity, NULL)
  96. #define ffebad_start_lex(e) ffebad_start_ (TRUE, (e), FFEBAD_severity, NULL)
  97. #define ffebad_start_msg(m,s) ffebad_start_ (FALSE, FFEBAD, (s), (m))
  98. #define ffebad_start_msg_lex(m,s) ffebad_start_ (TRUE, FFEBAD, (s), (m))
  99. #define ffebad_terminate_0()
  100. #define ffebad_terminate_1()
  101. #define ffebad_terminate_2()
  102. #define ffebad_terminate_3()
  103. #define ffebad_terminate_4()
  104.  
  105. /* End of #include file. */
  106.  
  107. #endif
  108.