Imported Upstream version 1.3.1
[platform/upstream/libjpeg-turbo.git] / win / jconfig.h.in
1 /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
2 /* see jconfig.txt for explanations */
3
4 #define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
5 #define LIBJPEG_TURBO_VERSION @VERSION@
6 #cmakedefine C_ARITH_CODING_SUPPORTED
7 #cmakedefine D_ARITH_CODING_SUPPORTED
8 #cmakedefine MEM_SRCDST_SUPPORTED
9
10 #define HAVE_PROTOTYPES
11 #define HAVE_UNSIGNED_CHAR
12 #define HAVE_UNSIGNED_SHORT
13 /* #define void char */
14 /* #define const */
15 #undef CHAR_IS_UNSIGNED
16 #define HAVE_STDDEF_H
17 #define HAVE_STDLIB_H
18 #undef NEED_BSD_STRINGS
19 #undef NEED_SYS_TYPES_H
20 #undef NEED_FAR_POINTERS        /* we presume a 32-bit flat memory model */
21 #undef NEED_SHORT_EXTERNAL_NAMES
22 #undef INCOMPLETE_TYPES_BROKEN
23
24 /* Define "boolean" as unsigned char, not int, per Windows custom */
25 #ifndef __RPCNDR_H__            /* don't conflict if rpcndr.h already read */
26 typedef unsigned char boolean;
27 #endif
28 #define HAVE_BOOLEAN            /* prevent jmorecfg.h from redefining it */
29
30 /* Define "INT32" as int, not long, per Windows custom */
31 #if !(defined(_BASETSD_H_) || defined(_BASETSD_H))   /* don't conflict if basetsd.h already read */
32 typedef short INT16;
33 typedef signed int INT32;
34 #endif
35 #define XMD_H                   /* prevent jmorecfg.h from redefining it */
36
37 #ifdef JPEG_INTERNALS
38
39 #undef RIGHT_SHIFT_IS_UNSIGNED
40
41 #endif /* JPEG_INTERNALS */