OLD | NEW |
(Empty) | |
| 1 /* jconfigint.h. Generated from jconfigint.h.in by configure. */ |
| 2 /* libjpeg-turbo build number */ |
| 3 #define BUILD "" |
| 4 |
| 5 /* How to obtain function inlining. */ |
| 6 #ifndef INLINE |
| 7 #ifndef TURBO_FOR_WINDOWS |
| 8 #define INLINE inline __attribute__((always_inline)) |
| 9 #else |
| 10 #if defined(__GNUC__) |
| 11 #define INLINE inline __attribute__((always_inline)) |
| 12 #elif defined(_MSC_VER) |
| 13 #define INLINE __forceinline |
| 14 #else |
| 15 #define INLINE |
| 16 #endif |
| 17 #endif |
| 18 #endif |
| 19 |
| 20 /* Define to the full name of this package. */ |
| 21 #define PACKAGE_NAME "libjpeg-turbo" |
| 22 |
| 23 /* Version number of package */ |
| 24 #define VERSION "1.4.90" |
| 25 |
| 26 /* The size of `size_t', as computed by sizeof. */ |
| 27 #if __WORDSIZE==64 || defined(_WIN64) |
| 28 #define SIZEOF_SIZE_T 8 |
| 29 #else |
| 30 #define SIZEOF_SIZE_T 4 |
| 31 #endif |
OLD | NEW |