OLD | NEW |
1 /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */ | 1 /* jconfig.h. Generated from jconfig.h.in by configure. */ |
2 /* see jconfig.doc for explanations */ | 2 /* Version ID for the JPEG library. |
| 3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". |
| 4 */ |
| 5 #define JPEG_LIB_VERSION 62 |
3 | 6 |
4 #define HAVE_PROTOTYPES | 7 /* libjpeg-turbo version */ |
5 #define HAVE_UNSIGNED_CHAR | 8 #define LIBJPEG_TURBO_VERSION 1.2.80 |
6 #define HAVE_UNSIGNED_SHORT | |
7 /* #define void char */ | |
8 /* #define const */ | |
9 #undef CHAR_IS_UNSIGNED | |
10 #define HAVE_STDDEF_H | |
11 #define HAVE_STDLIB_H | |
12 #undef NEED_BSD_STRINGS | |
13 #undef NEED_SYS_TYPES_H | |
14 #undef NEED_FAR_POINTERS» /* we presume a 32-bit flat memory model */ | |
15 #undef NEED_SHORT_EXTERNAL_NAMES | |
16 #undef INCOMPLETE_TYPES_BROKEN | |
17 | 9 |
18 /* Define "boolean" as unsigned char, not int, per Windows custom */ | 10 /* Support arithmetic encoding */ |
19 #ifndef __RPCNDR_H__» » /* don't conflict if rpcndr.h already read */ | 11 /* #undef C_ARITH_CODING_SUPPORTED */ |
20 typedef unsigned char boolean; | 12 |
| 13 /* Support arithmetic decoding */ |
| 14 /* #undef D_ARITH_CODING_SUPPORTED */ |
| 15 |
| 16 /* Compiler supports function prototypes. */ |
| 17 #define HAVE_PROTOTYPES 1 |
| 18 |
| 19 /* Define to 1 if you have the <stddef.h> header file. */ |
| 20 #define HAVE_STDDEF_H 1 |
| 21 |
| 22 /* Define to 1 if you have the <stdlib.h> header file. */ |
| 23 #define HAVE_STDLIB_H 1 |
| 24 |
| 25 /* Compiler supports 'unsigned char'. */ |
| 26 #define HAVE_UNSIGNED_CHAR 1 |
| 27 |
| 28 /* Compiler supports 'unsigned short'. */ |
| 29 #define HAVE_UNSIGNED_SHORT 1 |
| 30 |
| 31 /* Compiler does not support pointers to unspecified structures. */ |
| 32 /* #undef INCOMPLETE_TYPES_BROKEN */ |
| 33 |
| 34 /* Compiler has <strings.h> rather than standard <string.h>. */ |
| 35 /* #undef NEED_BSD_STRINGS */ |
| 36 |
| 37 /* Linker requires that global names be unique in first 15 characters. */ |
| 38 /* #undef NEED_SHORT_EXTERNAL_NAMES */ |
| 39 |
| 40 /* Need to include <sys/types.h> in order to obtain size_t. */ |
| 41 /* #undef NEED_SYS_TYPES_H 1 */ |
| 42 |
| 43 /* Broken compiler shifts signed values as an unsigned shift. */ |
| 44 /* #undef RIGHT_SHIFT_IS_UNSIGNED */ |
| 45 |
| 46 /* Use accelerated SIMD routines. */ |
| 47 #define WITH_SIMD 1 |
| 48 |
| 49 /* Define to 1 if type `char' is unsigned and you are not using gcc. */ |
| 50 #ifndef __CHAR_UNSIGNED__ |
| 51 /* # undef __CHAR_UNSIGNED__ */ |
21 #endif | 52 #endif |
22 #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */ | |
23 | 53 |
24 #define inline __inline | 54 /* Define to empty if `const' does not conform to ANSI C. */ |
| 55 /* #undef const */ |
25 | 56 |
26 #ifdef JPEG_INTERNALS | 57 /* Define to `unsigned int' if <sys/types.h> does not define. */ |
27 | 58 /* #undef size_t */ |
28 #undef RIGHT_SHIFT_IS_UNSIGNED | |
29 | |
30 #endif /* JPEG_INTERNALS */ | |
OLD | NEW |