2001-03-20 16:46:45 +00:00
|
|
|
/**
|
2005-01-17 17:34:31 +00:00
|
|
|
* \file include/asoundlib.h
|
2001-07-18 12:17:11 +00:00
|
|
|
* \brief Application interface library for the ALSA driver
|
2007-10-15 10:24:55 +02:00
|
|
|
* \author Jaroslav Kysela <perex@perex.cz>
|
2001-03-20 16:46:45 +00:00
|
|
|
* \author Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
* \author Takashi Iwai <tiwai@suse.de>
|
2003-07-14 10:20:31 +00:00
|
|
|
* \date 1998-2001
|
2001-03-20 16:46:45 +00:00
|
|
|
*
|
|
|
|
* Application interface library for the ALSA driver
|
2005-01-17 17:34:31 +00:00
|
|
|
*/
|
|
|
|
/*
|
1998-08-13 15:42:56 +00:00
|
|
|
* This library is free software; you can redistribute it and/or modify
|
2001-12-30 09:22:54 +00:00
|
|
|
* 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
|
2001-12-30 09:22:54 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
1998-08-13 15:42:56 +00:00
|
|
|
*
|
2001-12-30 09:22:54 +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
|
2017-11-14 14:29:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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>
|
2000-05-25 08:36:58 +00:00
|
|
|
#include <stdio.h>
|
2000-05-11 14:12:34 +00:00
|
|
|
#include <stdlib.h>
|
2013-02-12 10:06:11 +01:00
|
|
|
#include <sys/types.h>
|
2000-08-18 18:48:00 +00:00
|
|
|
#include <string.h>
|
1998-08-28 14:04:48 +00:00
|
|
|
#include <fcntl.h>
|
2007-10-30 14:28:30 +01:00
|
|
|
#include <assert.h>
|
2017-07-12 10:45:18 +02:00
|
|
|
#include <poll.h>
|
2001-03-07 12:36:05 +00:00
|
|
|
#include <errno.h>
|
2003-07-14 10:20:31 +00:00
|
|
|
#include <stdarg.h>
|