| OLD | NEW |
| 1 /* jconfig.h. Generated from jconfig.h.in by configure. */ | 1 /* jconfig.h. Generated from jconfig.h.in by configure. */ |
| 2 /* Version ID for the JPEG library. | 2 /* Version ID for the JPEG library. |
| 3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". | 3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". |
| 4 */ | 4 */ |
| 5 #ifndef JPEG_LIB_VERSION | 5 #ifndef JPEG_LIB_VERSION |
| 6 #define JPEG_LIB_VERSION 62 | 6 #define JPEG_LIB_VERSION 62 |
| 7 #endif /* JPEG_LIB_VERSION */ | 7 #endif /* JPEG_LIB_VERSION */ |
| 8 | 8 |
| 9 /* Support arithmetic encoding */ | 9 /* Support arithmetic encoding */ |
| 10 #define C_ARITH_CODING_SUPPORTED 1 | 10 #define C_ARITH_CODING_SUPPORTED 1 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #endif /* HAVE_UNSIGNED_CHAR */ | 33 #endif /* HAVE_UNSIGNED_CHAR */ |
| 34 | 34 |
| 35 /* Define to 1 if the system has the type `unsigned short'. */ | 35 /* Define to 1 if the system has the type `unsigned short'. */ |
| 36 #ifndef HAVE_UNSIGNED_SHORT | 36 #ifndef HAVE_UNSIGNED_SHORT |
| 37 #define HAVE_UNSIGNED_SHORT 1 | 37 #define HAVE_UNSIGNED_SHORT 1 |
| 38 #endif /* HAVE_UNSIGNED_SHORT */ | 38 #endif /* HAVE_UNSIGNED_SHORT */ |
| 39 | 39 |
| 40 /* Define if you want use complete types */ | 40 /* Define if you want use complete types */ |
| 41 /* #undef INCOMPLETE_TYPES_BROKEN */ | 41 /* #undef INCOMPLETE_TYPES_BROKEN */ |
| 42 | 42 |
| 43 /* How to obtain function inlining. */ |
| 44 #ifndef INLINE |
| 45 #if defined(__GNUC__) |
| 46 #define INLINE __attribute__((always_inline)) |
| 47 #elif defined(_MSC_VER) |
| 48 #define INLINE __forceinline |
| 49 #else |
| 50 #define INLINE |
| 51 #endif |
| 52 #endif |
| 53 |
| 43 /* Define if you have BSD-like bzero and bcopy */ | 54 /* Define if you have BSD-like bzero and bcopy */ |
| 44 /* #undef NEED_BSD_STRINGS */ | 55 /* #undef NEED_BSD_STRINGS */ |
| 45 | 56 |
| 46 /* Define if you need short function names */ | 57 /* Define if you need short function names */ |
| 47 /* #undef NEED_SHORT_EXTERNAL_NAMES */ | 58 /* #undef NEED_SHORT_EXTERNAL_NAMES */ |
| 48 | 59 |
| 49 /* Define if you have sys/types.h */ | 60 /* Define if you have sys/types.h */ |
| 50 /* #undef NEED_SYS_TYPES_H */ | 61 /* #undef NEED_SYS_TYPES_H */ |
| 51 | 62 |
| 52 /* Define if shift is unsigned */ | 63 /* Define if shift is unsigned */ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 64 /* #undef const */ | 75 /* #undef const */ |
| 65 | 76 |
| 66 /* Define to `__inline__' or `__inline' if that's what the C compiler | 77 /* Define to `__inline__' or `__inline' if that's what the C compiler |
| 67 calls it, or to nothing if 'inline' is not supported under any name. */ | 78 calls it, or to nothing if 'inline' is not supported under any name. */ |
| 68 #ifndef __cplusplus | 79 #ifndef __cplusplus |
| 69 /* #undef inline */ | 80 /* #undef inline */ |
| 70 #endif | 81 #endif |
| 71 | 82 |
| 72 /* Define to `unsigned int' if <sys/types.h> does not define. */ | 83 /* Define to `unsigned int' if <sys/types.h> does not define. */ |
| 73 /* #undef size_t */ | 84 /* #undef size_t */ |
| OLD | NEW |