CDERROR.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:6k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * cderror.h
  22.  *
  23.  * Copyright (C) 1994, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file defines the error and message codes for the cjpeg/djpeg
  28.  * applications.  These strings are not needed as part of the JPEG library
  29.  * proper.
  30.  * Edit this file to add new codes, or to translate the message strings to
  31.  * some other language.
  32.  */
  33. /*
  34.  * To define the enum list of message codes, include this file without
  35.  * defining macro JMESSAGE.  To create a message string table, include it
  36.  * again with a suitable JMESSAGE definition (see jerror.c for an example).
  37.  */
  38. #ifndef JMESSAGE
  39. #ifndef CDERROR_H
  40. #define CDERROR_H
  41. /* First time through, define the enum list */
  42. #define JMAKE_ENUM_LIST
  43. #else
  44. /* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */
  45. #define JMESSAGE(code,string)
  46. #endif /* CDERROR_H */
  47. #endif /* JMESSAGE */
  48. #ifdef JMAKE_ENUM_LIST
  49. typedef enum {
  50. #define JMESSAGE(code,string) code ,
  51. #endif /* JMAKE_ENUM_LIST */
  52. JMESSAGE(JMSG_FIRSTADDONCODE=1000, NULL) /* Must be first entry! */
  53. #ifdef BMP_SUPPORTED
  54. JMESSAGE(JERR_BMP_BADCMAP, "Unsupported BMP colormap format")
  55. JMESSAGE(JERR_BMP_BADDEPTH, "Only 8- and 24-bit BMP files are supported")
  56. JMESSAGE(JERR_BMP_BADHEADER, "Invalid BMP file: bad header length")
  57. JMESSAGE(JERR_BMP_BADPLANES, "Invalid BMP file: biPlanes not equal to 1")
  58. JMESSAGE(JERR_BMP_COLORSPACE, "BMP output must be grayscale or RGB")
  59. JMESSAGE(JERR_BMP_COMPRESSED, "Sorry, compressed BMPs not yet supported")
  60. JMESSAGE(JERR_BMP_NOT, "Not a BMP file - does not start with BM")
  61. JMESSAGE(JTRC_BMP, "%ux%u 24-bit BMP image")
  62. JMESSAGE(JTRC_BMP_MAPPED, "%ux%u 8-bit colormapped BMP image")
  63. JMESSAGE(JTRC_BMP_OS2, "%ux%u 24-bit OS2 BMP image")
  64. JMESSAGE(JTRC_BMP_OS2_MAPPED, "%ux%u 8-bit colormapped OS2 BMP image")
  65. #endif /* BMP_SUPPORTED */
  66. #ifdef GIF_SUPPORTED
  67. JMESSAGE(JERR_GIF_BUG, "GIF output got confused")
  68. JMESSAGE(JERR_GIF_CODESIZE, "Bogus GIF codesize %d")
  69. JMESSAGE(JERR_GIF_COLORSPACE, "GIF output must be grayscale or RGB")
  70. JMESSAGE(JERR_GIF_IMAGENOTFOUND, "Too few images in GIF file")
  71. JMESSAGE(JERR_GIF_NOT, "Not a GIF file")
  72. JMESSAGE(JTRC_GIF, "%ux%ux%d GIF image")
  73. JMESSAGE(JTRC_GIF_BADVERSION,
  74.  "Warning: unexpected GIF version number '%c%c%c'")
  75. JMESSAGE(JTRC_GIF_EXTENSION, "Ignoring GIF extension block of type 0x%02x")
  76. JMESSAGE(JTRC_GIF_NONSQUARE, "Caution: nonsquare pixels in input")
  77. JMESSAGE(JWRN_GIF_BADDATA, "Corrupt data in GIF file")
  78. JMESSAGE(JWRN_GIF_CHAR, "Bogus char 0x%02x in GIF file, ignoring")
  79. JMESSAGE(JWRN_GIF_ENDCODE, "Premature end of GIF image")
  80. JMESSAGE(JWRN_GIF_NOMOREDATA, "Ran out of GIF bits")
  81. #endif /* GIF_SUPPORTED */
  82. #ifdef PPM_SUPPORTED
  83. JMESSAGE(JERR_PPM_COLORSPACE, "PPM output must be grayscale or RGB")
  84. JMESSAGE(JERR_PPM_NONNUMERIC, "Nonnumeric data in PPM file")
  85. JMESSAGE(JERR_PPM_NOT, "Not a PPM file")
  86. JMESSAGE(JTRC_PGM, "%ux%u PGM image")
  87. JMESSAGE(JTRC_PGM_TEXT, "%ux%u text PGM image")
  88. JMESSAGE(JTRC_PPM, "%ux%u PPM image")
  89. JMESSAGE(JTRC_PPM_TEXT, "%ux%u text PPM image")
  90. #endif /* PPM_SUPPORTED */
  91. #ifdef RLE_SUPPORTED
  92. JMESSAGE(JERR_RLE_BADERROR, "Bogus error code from RLE library")
  93. JMESSAGE(JERR_RLE_COLORSPACE, "RLE output must be grayscale or RGB")
  94. JMESSAGE(JERR_RLE_DIMENSIONS, "Image dimensions (%ux%u) too large for RLE")
  95. JMESSAGE(JERR_RLE_EMPTY, "Empty RLE file")
  96. JMESSAGE(JERR_RLE_EOF, "Premature EOF in RLE header")
  97. JMESSAGE(JERR_RLE_MEM, "Insufficient memory for RLE header")
  98. JMESSAGE(JERR_RLE_NOT, "Not an RLE file")
  99. JMESSAGE(JERR_RLE_TOOMANYCHANNELS, "Cannot handle %d output channels for RLE")
  100. JMESSAGE(JERR_RLE_UNSUPPORTED, "Cannot handle this RLE setup")
  101. JMESSAGE(JTRC_RLE, "%ux%u full-color RLE file")
  102. JMESSAGE(JTRC_RLE_FULLMAP, "%ux%u full-color RLE file with map of length %d")
  103. JMESSAGE(JTRC_RLE_GRAY, "%ux%u grayscale RLE file")
  104. JMESSAGE(JTRC_RLE_MAPGRAY, "%ux%u grayscale RLE file with map of length %d")
  105. JMESSAGE(JTRC_RLE_MAPPED, "%ux%u colormapped RLE file with map of length %d")
  106. #endif /* RLE_SUPPORTED */
  107. #ifdef TARGA_SUPPORTED
  108. JMESSAGE(JERR_TGA_BADCMAP, "Unsupported Targa colormap format")
  109. JMESSAGE(JERR_TGA_BADPARMS, "Invalid or unsupported Targa file")
  110. JMESSAGE(JERR_TGA_COLORSPACE, "Targa output must be grayscale or RGB")
  111. JMESSAGE(JTRC_TGA, "%ux%u RGB Targa image")
  112. JMESSAGE(JTRC_TGA_GRAY, "%ux%u grayscale Targa image")
  113. JMESSAGE(JTRC_TGA_MAPPED, "%ux%u colormapped Targa image")
  114. #else
  115. JMESSAGE(JERR_TGA_NOTCOMP, "Targa support was not compiled")
  116. #endif /* TARGA_SUPPORTED */
  117. JMESSAGE(JERR_BAD_CMAP_FILE,
  118.  "Color map file is invalid or of unsupported format")
  119. JMESSAGE(JERR_TOO_MANY_COLORS,
  120.  "Output file format cannot handle %d colormap entries")
  121. JMESSAGE(JERR_UNGETC_FAILED, "ungetc failed")
  122. #ifdef TARGA_SUPPORTED
  123. JMESSAGE(JERR_UNKNOWN_FORMAT,
  124.  "Unrecognized input file format --- perhaps you need -targa")
  125. #else
  126. JMESSAGE(JERR_UNKNOWN_FORMAT, "Unrecognized input file format")
  127. #endif
  128. JMESSAGE(JERR_UNSUPPORTED_FORMAT, "Unsupported output file format")
  129. #ifdef JMAKE_ENUM_LIST
  130.   JMSG_LASTADDONCODE
  131. } ADDON_MESSAGE_CODE;
  132. #undef JMAKE_ENUM_LIST
  133. #endif /* JMAKE_ENUM_LIST */
  134. /* Zap JMESSAGE macro so that future re-inclusions do nothing by default */
  135. #undef JMESSAGE