1 /*
2  * Copyright 2011-2012 Arx Libertatis Team (see the AUTHORS file)
3  *
4  * This file is part of Arx Libertatis.
5  *
6  * Arx Libertatis is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Arx Libertatis is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Arx Libertatis.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef ARX_AUDIO_DSOUND_DSOUNDFWD_H
21 #define ARX_AUDIO_DSOUND_DSOUNDFWD_H
22 
23 // dsound.h forward-declarations
24 
25 struct IKsPropertySet;
26 typedef struct IKsPropertySet * LPKSPROPERTYSET;
27 
28 struct IDirectSoundBuffer;
29 typedef struct IDirectSoundBuffer * LPDIRECTSOUNDBUFFER;
30 struct IDirectSound3DBuffer;
31 typedef struct IDirectSound3DBuffer * LPDIRECTSOUND3DBUFFER;
32 
33 struct IDirectSound;
34 typedef struct IDirectSound * LPDIRECTSOUND;
35 
36 struct IDirectSound3DListener;
37 typedef struct IDirectSound3DListener * LPDIRECTSOUND3DLISTENER;
38 
39 #endif // ARX_AUDIO_DSOUND_DSOUNDFWD_H
40