1/* $Id: tif_config.wince.h,v 1.1.2.1 2010-06-08 18:50:41 bfriesen Exp $ */
2
3/*
4 * TIFF library configuration header for Windows CE platform.
5 */
6#ifndef _WIN32_WCE
7# error This version of tif_config.h header is dedicated for Windows CE platform!
8#endif
9
10/* Define to 1 if you have the <assert.h> header file. */
11#define HAVE_ASSERT_H 1
12
13/* Define to 1 if you have the <fcntl.h> header file. */
14#define  HAVE_FCNTL_H 1
15
16/* Define as 0 or 1 according to the floating point format suported by the
17   machine */
18#define HAVE_IEEEFP 1
19
20/* Define to 1 if you have the `jbg_newlen' function. */
21#define HAVE_JBG_NEWLEN 1
22
23/* Define to 1 if you have the <string.h> header file. */
24#define HAVE_STRING_H 1
25
26/* Define to 1 if you have the <sys/types.h> header file. */
27#undef HAVE_SYS_TYPES_H
28
29/* Define to 1 if you have the <io.h> header file. */
30#define HAVE_IO_H 1
31
32/* Define to 1 if you have the <search.h> header file. */
33#define HAVE_SEARCH_H 1
34
35/* Define to 1 if you have the `setmode' function. */
36#define HAVE_SETMODE 1
37
38/* Define to 1 if you have the `bsearch' function. */
39#define HAVE_BSEARCH 1
40#define bsearch wceex_bsearch
41
42/* Define to 1 if you have the `lfind' function. */
43#define HAVE_LFIND 1
44#define lfind wceex_lfind
45
46/* The size of a `int', as computed by sizeof. */
47#define SIZEOF_INT 4
48
49/* The size of a `long', as computed by sizeof. */
50#define SIZEOF_LONG 4
51
52/* Set the native cpu bit order */
53#define HOST_FILLORDER FILLORDER_LSB2MSB
54
55/* Define to 1 if your processor stores words with the most significant byte
56   first (like Motorola and SPARC, unlike Intel and VAX). */
57/* #undef WORDS_BIGENDIAN */
58
59/* Define to `__inline__' or `__inline' if that's what the C compiler
60   calls it, or to nothing if 'inline' is not supported under any name.  */
61#ifndef __cplusplus
62# ifndef inline
63#  define inline __inline
64# endif
65#endif
66
67
68/*
69 * Local Variables:
70 * mode: c
71 * c-basic-offset: 8
72 * fill-column: 78
73 * End:
74 */
75