ALSA project - the C library reference
Loading...
Searching...
No Matches
asoundlib.h
Go to the documentation of this file.
1
11/*
12 * This library is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License as
14 * published by the Free Software Foundation; either version 2.1 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Lesser General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 *
26 */
27
28#ifndef __ASOUNDLIB_H
29#define __ASOUNDLIB_H
30
31#include <unistd.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <sys/types.h>
35#include <string.h>
36#include <fcntl.h>
37#include <assert.h>
38#include <poll.h>
39#include <errno.h>
40#include <stdarg.h>
41#include <stdint.h>
42#include <time.h>
43#include <endian.h>
44
45#ifndef DOC_HIDDEN
46#ifndef __GNUC__
47#define __inline__ inline
48#endif
49#endif /* DOC_HIDDEN */
50
51#include <alsa/asoundef.h>
52#include <alsa/version.h>
53#include <alsa/global.h>
54#include <alsa/input.h>
55#include <alsa/output.h>
56#include <alsa/error.h>
57#include <alsa/conf.h>
58#include <alsa/pcm.h>
59#include <alsa/rawmidi.h>
60#include <alsa/ump.h>
61#include <alsa/timer.h>
62#include <alsa/hwdep.h>
63#include <alsa/control.h>
64#include <alsa/mixer.h>
65#include <alsa/ump_msg.h>
66#include <alsa/seq_event.h>
67#include <alsa/seq.h>
68#include <alsa/seqmid.h>
69#include <alsa/seq_midi_event.h>
70
71#endif /* __ASOUNDLIB_H */