summaryrefslogtreecommitdiff
path: root/tif_config.vc.h (plain)
blob: c297cf3c498001aea8d45f9ef11faa84acc1cee8
1/* Define to 1 if you have the <assert.h> header file. */
2#define HAVE_ASSERT_H 1
3
4/* Define to 1 if you have the <fcntl.h> header file. */
5#define HAVE_FCNTL_H 1
6
7/* Define as 0 or 1 according to the floating point format suported by the
8 machine */
9#define HAVE_IEEEFP 1
10
11/* Define to 1 if you have the `jbg_newlen' function. */
12#define HAVE_JBG_NEWLEN 1
13
14/* Define to 1 if you have the <string.h> header file. */
15#define HAVE_STRING_H 1
16
17/* Define to 1 if you have the <sys/types.h> header file. */
18#define HAVE_SYS_TYPES_H 1
19
20/* Define to 1 if you have the <io.h> header file. */
21#define HAVE_IO_H 1
22
23/* Define to 1 if you have the <search.h> header file. */
24#define HAVE_SEARCH_H 1
25
26/* Define to 1 if you have the `setmode' function. */
27#define HAVE_SETMODE 1
28
29/* The size of a `int', as computed by sizeof. */
30#define SIZEOF_INT 4
31
32/* The size of a `long', as computed by sizeof. */
33#define SIZEOF_LONG 4
34
35/* Signed 64-bit type formatter */
36#define TIFF_INT64_FORMAT "%I64d"
37
38/* Signed 64-bit type */
39#define TIFF_INT64_T signed __int64
40
41/* Unsigned 64-bit type formatter */
42#define TIFF_UINT64_FORMAT "%I64u"
43
44/* Unsigned 64-bit type */
45#define TIFF_UINT64_T unsigned __int64
46
47/* Set the native cpu bit order */
48#define HOST_FILLORDER FILLORDER_LSB2MSB
49
50#define snprintf _snprintf
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#define lfind _lfind
65/*
66 * Local Variables:
67 * mode: c
68 * c-basic-offset: 8
69 * fill-column: 78
70 * End:
71 */
72