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