[WIN32K, USER32]
[reactos.git] / reactos / include / reactos / libs / libtiff / tiffconf.h
1 /*
2 Configuration defines for installed libtiff.
3 This file maintained for backward compatibility. Do not use definitions
4 from this file in your programs.
5 */
6
7 #ifndef _TIFFCONF_
8 #define _TIFFCONF_
9
10 /* Define to 1 if the system has the type `int16'. */
11 //#define HAVE_INT16 1
12
13 /* Define to 1 if the system has the type `int32'. */
14 //#define HAVE_INT32 1
15
16 /* Define to 1 if the system has the type `int8'. */
17 //#define HAVE_INT8 1
18
19 /* The size of a `int', as computed by sizeof. */
20 #define SIZEOF_INT 4
21
22 /* The size of a `long', as computed by sizeof. */
23 #define SIZEOF_LONG 4
24
25 /* Compatibility stuff. */
26
27 /* Define as 0 or 1 according to the floating point format suported by the
28 machine */
29 #define HAVE_IEEEFP 1
30
31 /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
32 #define HOST_FILLORDER FILLORDER_LSB2MSB
33
34 /* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
35 (Intel) */
36 #define HOST_BIGENDIAN 0
37
38 /* Support CCITT Group 3 & 4 algorithms */
39 #define CCITT_SUPPORT 1
40
41 /* Support JPEG compression (requires IJG JPEG library) */
42 // undef JPEG_SUPPORT
43
44 /* Support JBIG compression (requires JBIG-KIT library) */
45 // #undef JBIG_SUPPORT
46
47 /* Support LogLuv high dynamic range encoding */
48 #define LOGLUV_SUPPORT 1
49
50 /* Support LZW algorithm */
51 #define LZW_SUPPORT 1
52
53 /* Support NeXT 2-bit RLE algorithm */
54 #define NEXT_SUPPORT 1
55
56 /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
57 fails with unpatched IJG JPEG library) */
58 // #undef OJPEG_SUPPORT
59
60 /* Support Macintosh PackBits algorithm */
61 #define PACKBITS_SUPPORT 1
62
63 /* Support Pixar log-format algorithm (requires Zlib) */
64 #define PIXARLOG_SUPPORT 1
65
66 /* Support ThunderScan 4-bit RLE algorithm */
67 #define THUNDER_SUPPORT 1
68
69 /* Support Deflate compression */
70 #define ZIP_SUPPORT 1
71
72 /* Support strip chopping (whether or not to convert single-strip uncompressed
73 images to mutiple strips of ~8Kb to reduce memory usage) */
74 #define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
75
76 /* Enable SubIFD tag (330) support */
77 #define SUBIFD_SUPPORT 1
78
79 /* Treat extra sample as alpha (default enabled). The RGBA interface will
80 treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
81 packages produce RGBA files but don't mark the alpha properly. */
82 #define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
83
84 /* Pick up YCbCr subsampling info from the JPEG data stream to support files
85 lacking the tag (default enabled). */
86 #define CHECK_JPEG_YCBCR_SUBSAMPLING 1
87
88 /* Support MS MDI magic number files as TIFF */
89 #define MDI_SUPPORT 1
90
91 /*
92 * Feature support definitions.
93 * XXX: These macros are obsoleted. Don't use them in your apps!
94 * Macros stays here for backward compatibility and should be always defined.
95 */
96 #define COLORIMETRY_SUPPORT
97 #define YCBCR_SUPPORT
98 #define CMYK_SUPPORT
99 #define ICC_SUPPORT
100 #define PHOTOSHOP_SUPPORT
101 #define IPTC_SUPPORT
102
103 #endif /* _TIFFCONF_ */