alsa-lib/include/asoundlib.h

63 lines
1.7 KiB
C
Raw Normal View History

/**
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
* \author Jaroslav Kysela <perex@suse.cz>
* \author Abramo Bagnara <abramo@alsa-project.org>
* \author Takashi Iwai <tiwai@suse.de>
* \date 1998-2003
*
* 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 Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
1998-08-13 15:42:56 +00:00
* 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 Lesser General Public License for more details.
1998-08-13 15:42:56 +00:00
*
* You should have received a copy of the GNU Lesser General Public
1998-08-13 15:42:56 +00:00
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1998-08-13 15:42:56 +00:00
*
*/
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>
#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>
#include <assert.h>
#include <endian.h>
2003-06-24 19:30:08 +00:00
#include <stdarg.h>
#include <sys/poll.h>
#include <errno.h>
1998-08-13 15:42:56 +00:00
#include "asoundef.h"
#include "version.h"
#include "global.h"
#include "input.h"
#include "output.h"
#include "error.h"
#include "conf.h"
#include "pcm.h"
#include "rawmidi.h"
#include "timer.h"
#include "hwdep.h"
#include "control.h"
#include "mixer.h"
#include "seq_event.h"
#include "seq.h"
#include "seqmid.h"
#include "seq_midi_event.h"
#include "conv.h"
#include "instr.h"
2001-09-13 11:38:32 +00:00
#endif /* __ASOUNDLIB_H */