[95] | 1 | // BT: include windows definitions, we need them
|
---|
| 2 | #ifndef WIN32_LEAN_AND_MEAN
|
---|
| 3 | #define WIN32_LEAN_AND_MEAN // exclude rarely-used stuff from Windows headers
|
---|
| 4 | #endif
|
---|
| 5 | #include <windows.h>
|
---|
| 6 |
|
---|
| 7 | /* Define to 1 if you have the <assert.h> header file. */
|
---|
| 8 | #define HAVE_ASSERT_H 1
|
---|
| 9 |
|
---|
| 10 | /* Define to 1 if you have the <fcntl.h> header file. */
|
---|
| 11 | #define HAVE_FCNTL_H 1
|
---|
| 12 |
|
---|
| 13 | /* Define as 0 or 1 according to the floating point format suported by the
|
---|
| 14 | machine */
|
---|
| 15 | #define HAVE_IEEEFP 1
|
---|
| 16 |
|
---|
| 17 | /* Define to 1 if you have the <string.h> header file. */
|
---|
| 18 | #define HAVE_STRING_H 1
|
---|
| 19 |
|
---|
| 20 | /* Define to 1 if you have the <sys/types.h> header file. */
|
---|
| 21 | #define HAVE_SYS_TYPES_H 1
|
---|
| 22 |
|
---|
| 23 | /* Define to 1 if you have the <io.h> header file. */
|
---|
| 24 | #define HAVE_IO_H 1
|
---|
| 25 |
|
---|
| 26 | /* Define to 1 if you have the <search.h> header file. */
|
---|
| 27 | #define HAVE_SEARCH_H 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 | /* Set the native cpu bit order */
|
---|
| 36 | #define HOST_FILLORDER FILLORDER_LSB2MSB
|
---|
| 37 |
|
---|
| 38 | /* Define to 1 if your processor stores words with the most significant byte
|
---|
| 39 | first (like Motorola and SPARC, unlike Intel and VAX). */
|
---|
| 40 | /* #undef WORDS_BIGENDIAN */
|
---|
| 41 |
|
---|
| 42 | /* Define to `__inline__' or `__inline' if that's what the C compiler
|
---|
| 43 | calls it, or to nothing if 'inline' is not supported under any name. */
|
---|
| 44 | #ifndef __cplusplus
|
---|
| 45 | # ifndef inline
|
---|
| 46 | # define inline __inline
|
---|
| 47 | # endif
|
---|
| 48 | #endif
|
---|
| 49 |
|
---|
| 50 | #define lfind _lfind
|
---|
| 51 |
|
---|
| 52 | // BT: our program is console-based
|
---|
| 53 | #define TIF_PLATFORM_CONSOLE
|
---|