libsoundio  1.0.1
config.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Andrew Kelley
3  *
4  * This file is part of libsoundio, which is MIT licensed.
5  * See http://opensource.org/licenses/MIT
6  */
7 
8 #ifndef SOUNDIO_CONFIG_H
9 #define SOUNDIO_CONFIG_H
10 
11 #define SOUNDIO_VERSION_MAJOR 1
12 #define SOUNDIO_VERSION_MINOR 0
13 #define SOUNDIO_VERSION_PATCH 1
14 #define SOUNDIO_VERSION_STRING "1.0.1"
15 
16 /* #undef SOUNDIO_OS_BIG_ENDIAN */
17 #define SOUNDIO_OS_LITTLE_ENDIAN
18 
19 #define SOUNDIO_HAVE_JACK
20 #define SOUNDIO_HAVE_PULSEAUDIO
21 #define SOUNDIO_HAVE_ALSA
22 /* #undef SOUNDIO_HAVE_COREAUDIO */
23 /* #undef SOUNDIO_HAVE_WASAPI */
24 
25 #endif