/* ** Copyright (c) 2002-2016, Erik de Castro Lopo ** All rights reserved. ** ** This code is released under 2-clause BSD license. Please see the ** file at : https://github.com/erikd/libsamplerate/blob/master/COPYING */ /* ** This is the Win32 specific config.h header file. ** ** On Unix (including MacOSX), this header file is automatically generated ** during the configure process while on Win32 this has to be hand edited ** to keep it up to date. ** ** This is also a good file to add Win32 specific things. */ /* ** MSVC++ assumes that all floating point constants without a trailing ** letter 'f' are double precision. ** ** If this assumption is incorrect and one of these floating point constants ** is assigned to a float variable MSVC++ generates a warning. ** ** Since there are currently about 25000 of these warnings generated in ** src/src_sinc.c this slows down compile times considerably. The ** following #pragma disables the warning. */ #ifdef _MSC_VER #pragma warning(disable: 4305) #endif /*---------------------------------------------------------------------------- ** Normal #defines follow. */ /* Set to 1 if the compile is GNU GCC. */ #define COMPILER_IS_GCC 0 /* Target processor clips on negative float to int conversion. */ #define CPU_CLIPS_NEGATIVE 0 /* Target processor clips on positive float to int conversion. */ #define CPU_CLIPS_POSITIVE 0 /* Target processor is big endian. */ #define CPU_IS_BIG_ENDIAN 0 /* Target processor is little endian. */ #define CPU_IS_LITTLE_ENDIAN 1 /* Set to 1 to enable debugging. */ #define ENABLE_DEBUG 0 /* Major version of GCC or 3 otherwise. */ /* #undef GCC_MAJOR_VERSION */ /* Define to 1 if you have the `alarm' function. */ /* #undef HAVE_ALARM */ /* Define to 1 if you have the `calloc' function. */ #define HAVE_CALLOC 1 /* Define to 1 if you have the `ceil' function. */ #define HAVE_CEIL 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_DLFCN_H */ /* Set to 1 if you have libfftw3. */ /* #undef HAVE_FFTW3 */ /* Define to 1 if you have the `floor' function. */ #define HAVE_FLOOR 1 /* Define to 1 if you have the `fmod' function. */ #define HAVE_FMOD 1 /* Define to 1 if you have the `free' function. */ #define HAVE_FREE 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_INTTYPES_H */ /* Define to 1 if you have the `m' library (-lm). */ /* #undef HAVE_LIBM */ /* Define if you have C99's lrint function. */ #define HAVE_LRINT 1 /* Define if you have C99's lrintf function. */ #define HAVE_LRINTF 1 /* Define to 1 if you have the `malloc' function. */ #define HAVE_MALLOC 1 /* Define to 1 if you have the `memcpy' function. */ #define HAVE_MEMCPY 1 /* Define to 1 if you have the `memmove' function. */ #define HAVE_MEMMOVE 1 /* Define to 1 if you have the header file. */ #define HAVE_MEMORY_H 1 /* Define if you have signal SIGALRM. */ /* #undef HAVE_SIGALRM */ /* Define to 1 if you have the `signal' function. */ /* #undef HAVE_SIGNAL */ /* Set to 1 if you have libsndfile. */ #define HAVE_SNDFILE 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_STDINT_H */ /* Define to 1 if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRING_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_STAT_H 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_TIMES_H */ /* Define to 1 if you have the header file. */ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" /* Define to 1 if your C compiler doesn't accept -c and -o together. */ /* #undef NO_MINUS_C_MINUS_O */ /* Set to 1 if compiling for Win32 */ #define OS_IS_WIN32 1 /* Name of package */ #define PACKAGE "libsamplerate" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "erikd@mega-nerd.com" /* Define to the full name of this package. */ #define PACKAGE_NAME "libsamplerate" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "libsamplerate 0.1.8" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "libsamplerate" /* Define to the home page for this package. */ #define PACKAGE_URL "http://www.mega-nerd.com/libsamplerate/" /* Define to the version of this package. */ #define PACKAGE_VERSION "0.1.8" /* The size of `double', as computed by sizeof. */ #define SIZEOF_DOUBLE 8 /* The size of `float', as computed by sizeof. */ #define SIZEOF_FLOAT 4 /* The size of `int', as computed by sizeof. */ #define SIZEOF_INT 4 /* The size of `long', as computed by sizeof. */ #define SIZEOF_LONG 4 /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Version number of package */ #define VERSION "0.1.8" /* Extra Win32 hacks. */ /* ** Microsoft's compiler still does not support the 1999 ISO C Standard ** which includes 'inline'. */ #define inline __inline /* ReactOS hacks */ void __cdecl __debugbreak(void); unsigned long __cdecl DbgPrint(const char *Format, ...); #define exit(n) __debugbreak() #define printf DbgPrint # ifdef _MSC_VER # pragma warning(disable:4244) # endif /* _MSC_VER */