2001-03-20 16:46:45 +00:00
|
|
|
/**
|
2001-09-13 11:38:32 +00:00
|
|
|
* \file <alsa/asoundlib.h>
|
2001-07-18 12:17:11 +00:00
|
|
|
* \brief Application interface library for the ALSA driver
|
2001-03-20 16:46:45 +00:00
|
|
|
* \author Jaroslav Kysela <perex@suse.cz>
|
|
|
|
* \author Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
* \author Takashi Iwai <tiwai@suse.de>
|
|
|
|
* \date 1998-2001
|
|
|
|
*
|
|
|
|
* Application interface library for the ALSA driver
|
1998-08-13 15:42:56 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-08-31 15:00:01 +00:00
|
|
|
#ifndef __ASOUNDLIB_H
|
|
|
|
#define __ASOUNDLIB_H
|
1998-08-13 15:42:56 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
2000-05-25 08:36:58 +00:00
|
|
|
#include <stdio.h>
|
2000-05-11 14:12:34 +00:00
|
|
|
#include <stdlib.h>
|
2000-08-18 18:48:00 +00:00
|
|
|
#include <string.h>
|
1998-08-28 14:04:48 +00:00
|
|
|
#include <fcntl.h>
|
2001-02-06 23:48:10 +00:00
|
|
|
#include <assert.h>
|
2001-08-20 13:15:30 +00:00
|
|
|
#include <endian.h>
|
2001-02-12 23:51:49 +00:00
|
|
|
#include <sys/poll.h>
|
2001-03-07 12:36:05 +00:00
|
|
|
#include <errno.h>
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2001-09-13 11:38:32 +00:00
|
|
|
#include <alsa/asoundef.h>
|
|
|
|
#include <alsa/version.h>
|
|
|
|
#include <alsa/global.h>
|
|
|
|
#include <alsa/input.h>
|
|
|
|
#include <alsa/output.h>
|
|
|
|
#include <alsa/error.h>
|
|
|
|
#include <alsa/conf.h>
|
|
|
|
#include <alsa/pcm.h>
|
|
|
|
#include <alsa/rawmidi.h>
|
|
|
|
#include <alsa/timer.h>
|
|
|
|
#include <alsa/hwdep.h>
|
|
|
|
#include <alsa/control.h>
|
|
|
|
#include <alsa/mixer.h>
|
|
|
|
#include <alsa/seq_event.h>
|
|
|
|
#include <alsa/seq.h>
|
|
|
|
#include <alsa/seqmid.h>
|
|
|
|
#include <alsa/seq_midi_event.h>
|
|
|
|
#include <alsa/conv.h>
|
|
|
|
#include <alsa/instr.h>
|
2001-03-07 12:36:05 +00:00
|
|
|
|
2001-09-13 11:38:32 +00:00
|
|
|
#endif /* __ASOUNDLIB_H */
|