blob: b4664ab617aca716c3e8416bf57599b037666917 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/***************************************************************************
oss_sound.h - description
-------------------
begin : Wed Dec 8 1999
copyright : (C) 1999 by Marcin "Duddie" Dudar
email : duddie@psemu.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _OSS_SOUND_H
#define _OSS_SOUND_H
#ifdef OSS_MEM_DEF
#define OSS_MEM_EXTERN
#else
#define OSS_MEM_EXTERN extern
#endif
OSS_MEM_EXTERN int sound_buffer_size;
#define OSS_MODE_STEREO 1
#define OSS_MODE_MONO 0
#define OSS_SPEED_44100 44100
#endif // _OSS_SOUND_H
|