fmtmsg.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* Message display handling.
  2. Copyright (C) 1997, 1999, 2000, 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifndef __FMTMSG_H
  17. #define __FMTMSG_H 1
  18. #include <features.h>
  19. __BEGIN_DECLS
  20. /* Values to control `fmtmsg' function. */
  21. enum
  22. {
  23. MM_HARD = 0x001, /* Source of the condition is hardware. */
  24. #define MM_HARD MM_HARD
  25. MM_SOFT = 0x002, /* Source of the condition is software. */
  26. #define MM_SOFT MM_SOFT
  27. MM_FIRM = 0x004, /* Source of the condition is firmware. */
  28. #define MM_FIRM MM_FIRM
  29. MM_APPL = 0x008, /* Condition detected by application. */
  30. #define MM_APPL MM_APPL
  31. MM_UTIL = 0x010, /* Condition detected by utility. */
  32. #define MM_UTIL MM_UTIL
  33. MM_OPSYS = 0x020, /* Condition detected by operating system. */
  34. #define MM_OPSYS MM_OPSYS
  35. MM_RECOVER = 0x040, /* Recoverable error. */
  36. #define MM_RECOVER MM_RECOVER
  37. MM_NRECOV = 0x080, /* Non-recoverable error. */
  38. #define MM_NRECOV MM_NRECOV
  39. MM_PRINT = 0x100, /* Display message in standard error. */
  40. #define MM_PRINT MM_PRINT
  41. MM_CONSOLE = 0x200 /* Display message on system console. */
  42. #define MM_CONSOLE MM_CONSOLE
  43. };
  44. /* Values to be for SEVERITY parameter of `fmtmsg'. */
  45. enum
  46. {
  47. MM_NOSEV = 0, /* No severity level provided for the message. */
  48. #define MM_NOSEV MM_NOSEV
  49. MM_HALT, /* Error causing application to halt. */
  50. #define MM_HALT MM_HALT
  51. MM_ERROR, /* Application has encountered a non-fatal fault. */
  52. #define MM_ERROR MM_ERROR
  53. MM_WARNING, /* Application has detected unusual non-error
  54. condition. */
  55. #define MM_WARNING MM_WARNING
  56. MM_INFO /* Informative message. */
  57. #define MM_INFO MM_INFO
  58. };
  59. /* Macros which can be used as null values for the arguments of `fmtmsg'. */
  60. #define MM_NULLLBL ((char *) 0)
  61. #define MM_NULLSEV 0
  62. #define MM_NULLMC ((long int) 0)
  63. #define MM_NULLTXT ((char *) 0)
  64. #define MM_NULLACT ((char *) 0)
  65. #define MM_NULLTAG ((char *) 0)
  66. /* Possible return values of `fmtmsg'. */
  67. enum
  68. {
  69. MM_NOTOK = -1,
  70. #define MM_NOTOK MM_NOTOK
  71. MM_OK = 0,
  72. #define MM_OK MM_OK
  73. MM_NOMSG = 1,
  74. #define MM_NOMSG MM_NOMSG
  75. MM_NOCON = 4
  76. #define MM_NOCON MM_NOCON
  77. };
  78. /* Print message with given CLASSIFICATION, LABEL, SEVERITY, TEXT, ACTION
  79. and TAG to console or standard error. */
  80. extern int fmtmsg (long int __classification, __const char *__label,
  81. int __severity, __const char *__text,
  82. __const char *__action, __const char *__tag);
  83. #ifdef __USE_SVID
  84. /* Add or remove severity level. */
  85. extern int addseverity (int __severity, __const char *__string) __THROW;
  86. #endif
  87. __END_DECLS
  88. #endif /* fmtmsg.h */