1 //-------------------------------------------------------------------------
2 /*
3 Copyright (C) 1996, 2003 - 3D Realms Entertainment
4 Copyright (C) 2017-2019 Nuke.YKT
5 
6 This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
7 
8 Duke Nukem 3D is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12 
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 
17 See the GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 
23 Original Source: 1996 - Todd Replogle
24 Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
25 */
26 //-------------------------------------------------------------------------
27 
28 //****************************************************************************
29 //
30 // sounds.h
31 //
32 //****************************************************************************
33 
34 #ifndef _sounds_public_
35 #define _sounds_public_
36 
37 extern int32 FXDevice;
38 extern int32 MusicDevice;
39 extern int32 FXVolume;
40 extern int32 MusicVolume;
41 extern fx_blaster_config BlasterConfig;
42 extern int32 NumVoices;
43 extern int32 NumChannels;
44 extern int32 NumBits;
45 extern int32 MixRate;
46 extern int32 MidiPort;
47 extern int32 ReverseStereo;
48 
49 void SoundStartup( void );
50 void SoundShutdown( void );
51 void MusicStartup( void );
52 void MusicShutdown( void );
53 
54 #endif
55