• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  ALSA lib header file include/asoundlib.h
3  *  Copyright (c) 2022 Huawei Device Co., Ltd.
4  *
5  *   This library is free software; you can redistribute it and/or modify
6  *   it under the terms of the GNU Lesser General Public License as
7  *   published by the Free Software Foundation; either version 2.1 of
8  *   the License, or (at your option) any later version.
9  *
10  *   This program is distributed in the hope that it will be useful,
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *   GNU Lesser General Public License for more details.
14  *
15  *   You should have received a copy of the GNU Lesser General Public
16  *   License along with this library; if not, write to the Free Software
17  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20 
21 #ifndef __ASOUNDLIB_H
22 #define __ASOUNDLIB_H
23 
24 #include <unistd.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <sys/types.h>
28 #include <string.h>
29 #include <fcntl.h>
30 #include <assert.h>
31 #include <poll.h>
32 #include <errno.h>
33 #include <stdarg.h>
34 #include <endian.h>
35 
36 #ifndef __GNUC__
37 #define __inline__ inline
38 #endif
39 
40 #include <alsa/asoundef.h>
41 #include <alsa/version.h>
42 #include <alsa/global.h>
43 #include <alsa/input.h>
44 #include <alsa/output.h>
45 #include <alsa/error.h>
46 #include <alsa/conf.h>
47 #include <alsa/pcm.h>
48 #include <alsa/rawmidi.h>
49 #include <alsa/timer.h>
50 #include <alsa/hwdep.h>
51 #include <alsa/control.h>
52 #include <alsa/mixer.h>
53 #include <alsa/seq_event.h>
54 #include <alsa/seq.h>
55 #include <alsa/seqmid.h>
56 #include <alsa/seq_midi_event.h>
57 
58 #endif /* __ASOUNDLIB_H */
59