Blame libtiff/tiffconf.wince.h

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