1 | /* |
---|
2 | | $Id: config.h,v 1.1.1.2 2004-09-24 20:14:37 ghudson Exp $ |
---|
3 | | config.h for Win32, Copyright (c) 2001, Chris Wolf <af@starclass.com> |
---|
4 | | This file is specifically for the MSVC environment, it has not |
---|
5 | | been tested using Cygwin GCC, yet. |
---|
6 | */ |
---|
7 | |
---|
8 | #if !defined(__HAVE_AF_CONFIG_H__) && defined(_MSC_VER) |
---|
9 | #define __HAVE_AF_CONFIG_H__ |
---|
10 | |
---|
11 | #include <float.h> |
---|
12 | |
---|
13 | #define isnan _isnan |
---|
14 | #define vsnprintf _vsnprintf |
---|
15 | #define snprintf _snprintf |
---|
16 | |
---|
17 | typedef long ssize_t; |
---|
18 | typedef char int8_t; |
---|
19 | typedef unsigned char u_int8_t; |
---|
20 | typedef short int16_t; |
---|
21 | typedef unsigned short u_int16_t; |
---|
22 | typedef long int32_t; |
---|
23 | typedef unsigned long u_int32_t; |
---|
24 | |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | /* Define to empty if the keyword does not work. */ |
---|
30 | /* #undef const */ |
---|
31 | |
---|
32 | /* Define to `long' if <sys/types.h> doesn't define. */ |
---|
33 | /* #undef off_t */ |
---|
34 | |
---|
35 | /* Define to `unsigned' if <sys/types.h> doesn't define. */ |
---|
36 | /* #undef size_t */ |
---|
37 | |
---|
38 | /* Define if you have the ANSI C header files. */ |
---|
39 | #define STDC_HEADERS 1 |
---|
40 | |
---|
41 | /* Define if your processor stores words with the most significant |
---|
42 | byte first (like Motorola and SPARC, unlike Intel and VAX). */ |
---|
43 | /* #undef WORDS_BIGENDIAN */ |
---|
44 | |
---|
45 | /* The number of bytes in a long. */ |
---|
46 | #define SIZEOF_LONG 4 |
---|
47 | |
---|
48 | /* The number of bytes in a off_t. */ |
---|
49 | #define SIZEOF_OFF_T 4 |
---|
50 | |
---|
51 | /* The number of bytes in a size_t. */ |
---|
52 | #define SIZEOF_SIZE_T 4 |
---|
53 | |
---|
54 | /* Define if you have the strdup function. */ |
---|
55 | #define HAVE_STRDUP 1 |
---|
56 | |
---|
57 | /* Define if you have the <fcntl.h> header file. */ |
---|
58 | #define HAVE_FCNTL_H 1 |
---|
59 | |
---|
60 | /* Define if you have the <unistd.h> header file. */ |
---|
61 | /* #define HAVE_UNISTD_H 1 */ |
---|
62 | |
---|
63 | /* Define if you have the m library (-lm). */ |
---|
64 | #define HAVE_LIBM 1 |
---|
65 | |
---|
66 | /* Name of package */ |
---|
67 | #define PACKAGE "audiofile" |
---|
68 | |
---|
69 | /* Version number of package */ |
---|
70 | #define VERSION "0.2.6" |
---|
71 | |
---|
72 | #endif /* __HAVE_AF_CONFIG_H__ */ |
---|