1/**
2 * \file include/asoundlib.h
3 * \brief Application interface library for the ALSA driver
4 * \author Jaroslav Kysela <perex@perex.cz>
5 * \author Abramo Bagnara <abramo@alsa-project.org>
6 * \author Takashi Iwai <tiwai@suse.de>
7 * \date 1998-2001
8 *
9 * Application interface library for the ALSA driver
10 */
11/*
12 *   This library is free software; you can redistribute it and/or modify
13 *   it under the terms of the GNU Lesser General Public License as
14 *   published by the Free Software Foundation; either version 2.1 of
15 *   the License, or (at your option) any later version.
16 *
17 *   This program is distributed in the hope that it will be useful,
18 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 *   GNU Lesser General Public License for more details.
21 *
22 *   You should have received a copy of the GNU Lesser General Public
23 *   License along with this library; if not, write to the Free Software
24 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25 *
26 */
27
28#ifndef __ASOUNDLIB_H
29#define __ASOUNDLIB_H
30
31#include <unistd.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <string.h>
35#include <fcntl.h>
36#include <assert.h>
37#include <endian.h>
38#include <sys/poll.h>
39#include <errno.h>
40#include <stdarg.h>
41
42#include "asoundef.h"
43#include "version.h"
44#include "global.h"
45#include "input.h"
46#include "output.h"
47#include "error.h"
48#include "conf.h"
49#include "pcm.h"
50#include "timer.h"
51#include "hwdep.h"
52#include "control.h"
53#include "mixer.h"
54#include "seq_event.h"
55#include "seq.h"
56#include "seqmid.h"
57#include "seq_midi_event.h"
58
59#endif /* __ASOUNDLIB_H */
60