jpayne@69
|
1 /**
|
jpayne@69
|
2 * \file include/asoundlib.h
|
jpayne@69
|
3 * \brief Application interface library for the ALSA driver
|
jpayne@69
|
4 * \author Jaroslav Kysela <perex@perex.cz>
|
jpayne@69
|
5 * \author Abramo Bagnara <abramo@alsa-project.org>
|
jpayne@69
|
6 * \author Takashi Iwai <tiwai@suse.de>
|
jpayne@69
|
7 * \date 1998-2001
|
jpayne@69
|
8 *
|
jpayne@69
|
9 * Application interface library for the ALSA driver
|
jpayne@69
|
10 */
|
jpayne@69
|
11 /*
|
jpayne@69
|
12 * This library is free software; you can redistribute it and/or modify
|
jpayne@69
|
13 * it under the terms of the GNU Lesser General Public License as
|
jpayne@69
|
14 * published by the Free Software Foundation; either version 2.1 of
|
jpayne@69
|
15 * the License, or (at your option) any later version.
|
jpayne@69
|
16 *
|
jpayne@69
|
17 * This program is distributed in the hope that it will be useful,
|
jpayne@69
|
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
jpayne@69
|
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
jpayne@69
|
20 * GNU Lesser General Public License for more details.
|
jpayne@69
|
21 *
|
jpayne@69
|
22 * You should have received a copy of the GNU Lesser General Public
|
jpayne@69
|
23 * License along with this library; if not, write to the Free Software
|
jpayne@69
|
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
jpayne@69
|
25 *
|
jpayne@69
|
26 */
|
jpayne@69
|
27
|
jpayne@69
|
28 #ifndef __ASOUNDLIB_H
|
jpayne@69
|
29 #define __ASOUNDLIB_H
|
jpayne@69
|
30
|
jpayne@69
|
31 #include <unistd.h>
|
jpayne@69
|
32 #include <stdio.h>
|
jpayne@69
|
33 #include <stdlib.h>
|
jpayne@69
|
34 #include <sys/types.h>
|
jpayne@69
|
35 #include <string.h>
|
jpayne@69
|
36 #include <fcntl.h>
|
jpayne@69
|
37 #include <assert.h>
|
jpayne@69
|
38 #include <poll.h>
|
jpayne@69
|
39 #include <errno.h>
|
jpayne@69
|
40 #include <stdarg.h>
|
jpayne@69
|
41 #include <endian.h>
|
jpayne@69
|
42
|
jpayne@69
|
43 #ifndef __GNUC__
|
jpayne@69
|
44 #define __inline__ inline
|
jpayne@69
|
45 #endif
|
jpayne@69
|
46
|
jpayne@69
|
47 #include <alsa/asoundef.h>
|
jpayne@69
|
48 #include <alsa/version.h>
|
jpayne@69
|
49 #include <alsa/global.h>
|
jpayne@69
|
50 #include <alsa/input.h>
|
jpayne@69
|
51 #include <alsa/output.h>
|
jpayne@69
|
52 #include <alsa/error.h>
|
jpayne@69
|
53 #include <alsa/conf.h>
|
jpayne@69
|
54 #include <alsa/pcm.h>
|
jpayne@69
|
55 #include <alsa/rawmidi.h>
|
jpayne@69
|
56 #include <alsa/timer.h>
|
jpayne@69
|
57 #include <alsa/hwdep.h>
|
jpayne@69
|
58 #include <alsa/control.h>
|
jpayne@69
|
59 #include <alsa/mixer.h>
|
jpayne@69
|
60 #include <alsa/seq_event.h>
|
jpayne@69
|
61 #include <alsa/seq.h>
|
jpayne@69
|
62 #include <alsa/seqmid.h>
|
jpayne@69
|
63 #include <alsa/seq_midi_event.h>
|
jpayne@69
|
64
|
jpayne@69
|
65 #endif /* __ASOUNDLIB_H */
|