Blame libtiff/tif_config.wince.h

Packit 7838c8
/* $Id: tif_config.wince.h,v 1.3 2010-03-10 18:56:48 bfriesen Exp $ */
Packit 7838c8
Packit 7838c8
/*
Packit 7838c8
 * TIFF library configuration header for Windows CE platform.
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
/* Define to 1 if you have the <assert.h> header file. */
Packit 7838c8
#define HAVE_ASSERT_H 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the <fcntl.h> header file. */
Packit 7838c8
#define  HAVE_FCNTL_H 1
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
/* Define to 1 if you have the `jbg_newlen' function. */
Packit 7838c8
#define HAVE_JBG_NEWLEN 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the <string.h> header file. */
Packit 7838c8
#define HAVE_STRING_H 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the <sys/types.h> header file. */
Packit 7838c8
#undef HAVE_SYS_TYPES_H
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the <io.h> header file. */
Packit 7838c8
#define HAVE_IO_H 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the <search.h> header file. */
Packit 7838c8
#define HAVE_SEARCH_H 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the `setmode' function. */
Packit 7838c8
#define HAVE_SETMODE 1
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the `bsearch' function. */
Packit 7838c8
#define HAVE_BSEARCH 1
Packit 7838c8
#define bsearch wceex_bsearch
Packit 7838c8
Packit 7838c8
/* Define to 1 if you have the `lfind' function. */
Packit 7838c8
#define HAVE_LFIND 1
Packit 7838c8
#define lfind wceex_lfind
Packit 7838c8
Packit 7838c8
/* The size of a `int', as computed by sizeof. */
Packit 7838c8
#define SIZEOF_INT 4
Packit 7838c8
Packit 7838c8
/* Set the native cpu bit order */
Packit 7838c8
#define HOST_FILLORDER FILLORDER_LSB2MSB
Packit 7838c8
Packit 7838c8
/* Define to 1 if your processor stores words with the most significant byte
Packit 7838c8
   first (like Motorola and SPARC, unlike Intel and VAX). */
Packit 7838c8
/* #undef WORDS_BIGENDIAN */
Packit 7838c8
Packit 7838c8
/* Define to `__inline__' or `__inline' if that's what the C compiler
Packit 7838c8
   calls it, or to nothing if 'inline' is not supported under any name.  */
Packit 7838c8
#ifndef __cplusplus
Packit 7838c8
# ifndef inline
Packit 7838c8
#  define inline __inline
Packit 7838c8
# endif
Packit 7838c8
#endif
Packit 7838c8
Packit 7838c8
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
 */