| OLD | NEW |
| 1 /* | 1 /* |
| 2 * jpeglib.h | 2 * jpeglib.h |
| 3 * | 3 * |
| 4 * Copyright (C) 1991-1998, Thomas G. Lane. | 4 * Copyright (C) 1991-1998, Thomas G. Lane. |
| 5 * This file is part of the Independent JPEG Group's software. | 5 * This file is part of the Independent JPEG Group's software. |
| 6 * For conditions of distribution and use, see the accompanying README file. | 6 * For conditions of distribution and use, see the accompanying README file. |
| 7 * | 7 * |
| 8 * This file defines the application interface for the JPEG library. | 8 * This file defines the application interface for the JPEG library. |
| 9 * Most applications using the library need only include this file, | 9 * Most applications using the library need only include this file, |
| 10 * and perhaps jerror.h if they want to know the exact error codes. | 10 * and perhaps jerror.h if they want to know the exact error codes. |
| 11 */ | 11 */ |
| 12 | 12 |
| 13 #ifndef JPEGLIB_H | 13 #ifndef JPEGLIB_H |
| 14 #define JPEGLIB_H | 14 #define JPEGLIB_H |
| 15 | 15 |
| 16 /* Begin chromium edits */ |
| 17 #include "jpeglibmangler.h" |
| 18 /* End chromium edits */ |
| 19 |
| 16 /* | 20 /* |
| 17 * First we include the configuration files that record how this | 21 * First we include the configuration files that record how this |
| 18 * installation of the JPEG library is set up. jconfig.h can be | 22 * installation of the JPEG library is set up. jconfig.h can be |
| 19 * generated automatically for many systems. jmorecfg.h contains | 23 * generated automatically for many systems. jmorecfg.h contains |
| 20 * manual configuration options that most people need not worry about. | 24 * manual configuration options that most people need not worry about. |
| 21 */ | 25 */ |
| 22 | 26 |
| 23 #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */ | 27 #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */ |
| 24 #include "jconfig.h" /* widely used configuration options */ | 28 #include "jconfig.h" /* widely used configuration options */ |
| 25 #endif | 29 #endif |
| (...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 * Applications using the library should not include jpegint.h, but may wish | 1091 * Applications using the library should not include jpegint.h, but may wish |
| 1088 * to include jerror.h. | 1092 * to include jerror.h. |
| 1089 */ | 1093 */ |
| 1090 | 1094 |
| 1091 #ifdef JPEG_INTERNALS | 1095 #ifdef JPEG_INTERNALS |
| 1092 #include "jpegint.h" /* fetch private declarations */ | 1096 #include "jpegint.h" /* fetch private declarations */ |
| 1093 #include "jerror.h" /* fetch error codes too */ | 1097 #include "jerror.h" /* fetch error codes too */ |
| 1094 #endif | 1098 #endif |
| 1095 | 1099 |
| 1096 #endif /* JPEGLIB_H */ | 1100 #endif /* JPEGLIB_H */ |
| OLD | NEW |