1 | /* $Id: audio.h 142 2000-04-23 14:55:46Z ktk $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | **********************************************************************
|
---|
5 | * audio.c -- /dev/dsp interface for emu10k1 driver
|
---|
6 | * Copyright 1999, 2000 Creative Labs, Inc.
|
---|
7 | *
|
---|
8 | **********************************************************************
|
---|
9 | *
|
---|
10 | * Date Author Summary of changes
|
---|
11 | * ---- ------ ------------------
|
---|
12 | * October 20, 1999 Bertrand Lee base code release
|
---|
13 | * November 2, 1999 Alan Cox cleaned up types/leaks
|
---|
14 | *
|
---|
15 | **********************************************************************
|
---|
16 | *
|
---|
17 | * This program is free software; you can redistribute it and/or
|
---|
18 | * modify it under the terms of the GNU General Public License as
|
---|
19 | * published by the Free Software Foundation; either version 2 of
|
---|
20 | * the License, or (at your option) any later version.
|
---|
21 | *
|
---|
22 | * This program is distributed in the hope that it will be useful,
|
---|
23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
25 | * GNU General Public License for more details.
|
---|
26 | *
|
---|
27 | * You should have received a copy of the GNU General Public
|
---|
28 | * License along with this program; if not, write to the Free
|
---|
29 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
30 | * USA.
|
---|
31 | *
|
---|
32 | **********************************************************************
|
---|
33 | */
|
---|
34 |
|
---|
35 | #ifndef _AUDIO_H
|
---|
36 | #define _AUDIO_H
|
---|
37 |
|
---|
38 | #define __NO_VERSION__
|
---|
39 | #include <linux/module.h>
|
---|
40 | #include <linux/poll.h>
|
---|
41 | #include <asm/uaccess.h>
|
---|
42 |
|
---|
43 | #define MINFRAGS 2 /* _don't_ got bellow 2 */
|
---|
44 |
|
---|
45 | void emu10k1_waveout_bh(unsigned long);
|
---|
46 | void emu10k1_wavein_bh(unsigned long);
|
---|
47 |
|
---|
48 | #endif /* _AUDIO_H */
|
---|