source: trunk/third/audiofile/win32/config.h @ 20800

Revision 20800, 1.7 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20799, which included commits to RCS files with non-trunk default branches.
Line 
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
17typedef long           ssize_t;
18typedef char           int8_t;
19typedef unsigned char  u_int8_t;
20typedef short          int16_t;
21typedef unsigned short u_int16_t;
22typedef long           int32_t;
23typedef 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__ */
Note: See TracBrowser for help on using the repository browser.