kusano 7d535a
/* $Id: tiffconf.wince.h,v 1.3 2010-03-10 18:56:49 bfriesen Exp $ */
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Windows CE platform tiffconf.wince.h
kusano 7d535a
 * Created by Mateusz Loskot (mateusz@loskot.net)
kusano 7d535a
 *
kusano 7d535a
 * NOTE: Requires WCELIBCEX library with wceex_* functions,
kusano 7d535a
 * It's an extension to C library on Windows CE platform.
kusano 7d535a
 * For example, HAVE_STDIO_H definition indicates there are
kusano 7d535a
 * following files available:
kusano 7d535a
 * stdio.h - from Windows CE / Windows Mobile SDK 
kusano 7d535a
 * wce_stdio.h - from WCELIBCEX library
kusano 7d535a
 */
kusano 7d535a
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
  Configuration defines for installed libtiff.
kusano 7d535a
  This file maintained for backward compatibility. Do not use definitions
kusano 7d535a
  from this file in your programs.
kusano 7d535a
*/
kusano 7d535a
kusano 7d535a
#ifndef _WIN32_WCE
kusano 7d535a
# error This version of tif_config.h header is dedicated for Windows CE platform!
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
kusano 7d535a
#ifndef _TIFFCONF_
kusano 7d535a
#define _TIFFCONF_
kusano 7d535a
kusano 7d535a
/* Define to 1 if the system has the type `int16'. */
kusano 7d535a
/* #undef HAVE_INT16 */
kusano 7d535a
kusano 7d535a
/* Define to 1 if the system has the type `int32'. */
kusano 7d535a
/* #undef HAVE_INT32 */
kusano 7d535a
kusano 7d535a
/* Define to 1 if the system has the type `int8'. */
kusano 7d535a
/* #undef HAVE_INT8 */
kusano 7d535a
kusano 7d535a
/* The size of a `int', as computed by sizeof. */
kusano 7d535a
#define SIZEOF_INT 4
kusano 7d535a
kusano 7d535a
/* Compatibility stuff. */
kusano 7d535a
kusano 7d535a
/* Define as 0 or 1 according to the floating point format suported by the
kusano 7d535a
   machine */
kusano 7d535a
#define HAVE_IEEEFP 1
kusano 7d535a
kusano 7d535a
/* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
kusano 7d535a
#define HOST_FILLORDER FILLORDER_LSB2MSB
kusano 7d535a
kusano 7d535a
/* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
kusano 7d535a
   (Intel) */
kusano 7d535a
#define HOST_BIGENDIAN 0
kusano 7d535a
kusano 7d535a
/* Support CCITT Group 3 & 4 algorithms */
kusano 7d535a
#define CCITT_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support JPEG compression (requires IJG JPEG library) */
kusano 7d535a
/* #undef JPEG_SUPPORT */
kusano 7d535a
kusano 7d535a
/* Support LogLuv high dynamic range encoding */
kusano 7d535a
#define LOGLUV_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support LZW algorithm */
kusano 7d535a
#define LZW_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support NeXT 2-bit RLE algorithm */
kusano 7d535a
#define NEXT_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
kusano 7d535a
   fails with unpatched IJG JPEG library) */
kusano 7d535a
/* #undef OJPEG_SUPPORT */
kusano 7d535a
kusano 7d535a
/* Support Macintosh PackBits algorithm */
kusano 7d535a
#define PACKBITS_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support Pixar log-format algorithm (requires Zlib) */
kusano 7d535a
/* #undef PIXARLOG_SUPPORT */
kusano 7d535a
kusano 7d535a
/* Support ThunderScan 4-bit RLE algorithm */
kusano 7d535a
#define THUNDER_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Support Deflate compression */
kusano 7d535a
/* #undef ZIP_SUPPORT */
kusano 7d535a
kusano 7d535a
/* Support strip chopping (whether or not to convert single-strip uncompressed
kusano 7d535a
   images to mutiple strips of ~8Kb to reduce memory usage) */
kusano 7d535a
#define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
kusano 7d535a
kusano 7d535a
/* Enable SubIFD tag (330) support */
kusano 7d535a
#define SUBIFD_SUPPORT 1
kusano 7d535a
kusano 7d535a
/* Treat extra sample as alpha (default enabled). The RGBA interface will
kusano 7d535a
   treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
kusano 7d535a
   packages produce RGBA files but don't mark the alpha properly. */
kusano 7d535a
#define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
kusano 7d535a
kusano 7d535a
/* Pick up YCbCr subsampling info from the JPEG data stream to support files
kusano 7d535a
   lacking the tag (default enabled). */
kusano 7d535a
#define CHECK_JPEG_YCBCR_SUBSAMPLING 1
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Feature support definitions.
kusano 7d535a
 * XXX: These macros are obsoleted. Don't use them in your apps!
kusano 7d535a
 * Macros stays here for backward compatibility and should be always defined.
kusano 7d535a
 */
kusano 7d535a
#define COLORIMETRY_SUPPORT
kusano 7d535a
#define YCBCR_SUPPORT
kusano 7d535a
#define CMYK_SUPPORT
kusano 7d535a
#define ICC_SUPPORT
kusano 7d535a
#define PHOTOSHOP_SUPPORT
kusano 7d535a
#define IPTC_SUPPORT
kusano 7d535a
kusano 7d535a
#endif /* _TIFFCONF_ */
kusano 7d535a
/*
kusano 7d535a
 * Local Variables:
kusano 7d535a
 * mode: c
kusano 7d535a
 * c-basic-offset: 8
kusano 7d535a
 * fill-column: 78
kusano 7d535a
 * End:
kusano 7d535a
 */