summaryrefslogtreecommitdiff
path: root/tif_config.wince.h (plain)
blob: 94e92bbf946b653937ff6de73bb3aa36a4497936
1/* $Id: tif_config.wince.h,v 1.3 2010-03-10 18:56:48 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/* Set the native cpu bit order */
50#define HOST_FILLORDER FILLORDER_LSB2MSB
51
52/* Define to 1 if your processor stores words with the most significant byte
53 first (like Motorola and SPARC, unlike Intel and VAX). */
54/* #undef WORDS_BIGENDIAN */
55
56/* Define to `__inline__' or `__inline' if that's what the C compiler
57 calls it, or to nothing if 'inline' is not supported under any name. */
58#ifndef __cplusplus
59# ifndef inline
60# define inline __inline
61# endif
62#endif
63
64
65/*
66 * Local Variables:
67 * mode: c
68 * c-basic-offset: 8
69 * fill-column: 78
70 * End:
71 */
72