summaryrefslogtreecommitdiff
path: root/uisimulator/x11/oss_sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/oss_sound.h')
-rw-r--r--uisimulator/x11/oss_sound.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/uisimulator/x11/oss_sound.h b/uisimulator/x11/oss_sound.h
deleted file mode 100644
index 919ce1aab5..0000000000
--- a/uisimulator/x11/oss_sound.h
+++ /dev/null
@@ -1,28 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2002 Dave Chapman
10 *
11 * oss_sound - a sound driver for Linux (and others?) OSS audio
12 *
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21
22/* The "sound device type" is simply the file descriptor */
23#define sound_t int
24
25int init_sound(sound_t* sound);
26int config_sound(sound_t* sound, int sound_freq, int channels);
27void close_sound(sound_t* sound);
28int output_sound(sound_t* sound,const void* buf, int count);