ALSA project - the C library reference
|
00001 00011 /* 00012 * This library is free software; you can redistribute it and/or modify 00013 * it under the terms of the GNU Lesser General Public License as 00014 * published by the Free Software Foundation; either version 2.1 of 00015 * the License, or (at your option) any later version. 00016 * 00017 * This program is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 * GNU Lesser General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU Lesser General Public 00023 * License along with this library; if not, write to the Free Software 00024 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00025 * 00026 */ 00027 00028 #ifndef __ASOUNDLIB_H 00029 #define __ASOUNDLIB_H 00030 00031 #include <unistd.h> 00032 #include <stdio.h> 00033 #include <stdlib.h> 00034 #include <string.h> 00035 #include <fcntl.h> 00036 #include <assert.h> 00037 #include <endian.h> 00038 #include <sys/poll.h> 00039 #include <errno.h> 00040 #include <stdarg.h> 00041 00042 #include <alsa/asoundef.h> 00043 #include <alsa/version.h> 00044 #include <alsa/global.h> 00045 #include <alsa/input.h> 00046 #include <alsa/output.h> 00047 #include <alsa/error.h> 00048 #include <alsa/conf.h> 00049 #include <alsa/pcm.h> 00050 #include <alsa/rawmidi.h> 00051 #include <alsa/timer.h> 00052 #include <alsa/hwdep.h> 00053 #include <alsa/control.h> 00054 #include <alsa/mixer.h> 00055 #include <alsa/seq_event.h> 00056 #include <alsa/seq.h> 00057 #include <alsa/seqmid.h> 00058 #include <alsa/seq_midi_event.h> 00059 00060 #endif /* __ASOUNDLIB_H */