2
0

tif_config.wince.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* $Id: tif_config.wince.h,v 1.3 2010-03-10 18:56:48 bfriesen Exp $ */
  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. /* Define to 1 if you have the <assert.h> header file. */
  9. #define HAVE_ASSERT_H 1
  10. /* Define to 1 if you have the <fcntl.h> header file. */
  11. #define HAVE_FCNTL_H 1
  12. /* Define as 0 or 1 according to the floating point format suported by the
  13. machine */
  14. #define HAVE_IEEEFP 1
  15. /* Define to 1 if you have the `jbg_newlen' function. */
  16. #define HAVE_JBG_NEWLEN 1
  17. /* Define to 1 if you have the <string.h> header file. */
  18. #define HAVE_STRING_H 1
  19. /* Define to 1 if you have the <sys/types.h> header file. */
  20. #undef HAVE_SYS_TYPES_H
  21. /* Define to 1 if you have the <io.h> header file. */
  22. #define HAVE_IO_H 1
  23. /* Define to 1 if you have the <search.h> header file. */
  24. #define HAVE_SEARCH_H 1
  25. /* Define to 1 if you have the `setmode' function. */
  26. #define HAVE_SETMODE 1
  27. /* Define to 1 if you have the `bsearch' function. */
  28. #define HAVE_BSEARCH 1
  29. #define bsearch wceex_bsearch
  30. /* Define to 1 if you have the `lfind' function. */
  31. #define HAVE_LFIND 1
  32. #define lfind wceex_lfind
  33. /* The size of a `int', as computed by sizeof. */
  34. #define SIZEOF_INT 4
  35. /* Set the native cpu bit order */
  36. #define HOST_FILLORDER FILLORDER_LSB2MSB
  37. /* Define to 1 if your processor stores words with the most significant byte
  38. first (like Motorola and SPARC, unlike Intel and VAX). */
  39. /* #undef WORDS_BIGENDIAN */
  40. /* Define to `__inline__' or `__inline' if that's what the C compiler
  41. calls it, or to nothing if 'inline' is not supported under any name. */
  42. #ifndef __cplusplus
  43. # ifndef inline
  44. # define inline __inline
  45. # endif
  46. #endif
  47. /*
  48. * Local Variables:
  49. * mode: c
  50. * c-basic-offset: 8
  51. * fill-column: 78
  52. * End:
  53. */