-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectSound.h
25 lines (21 loc) · 854 Bytes
/
DirectSound.h
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
/***************************************************************************************
* Monkeying Around ( in 3D )
* --------------------------
* $path : E:\Program Files\Microsoft Visual Studio\MyProjects\Monkeying Around\DirectSound.h
* $auth : Josiah T. Avery
* $date : i5/29/06
*
* -------------------------------------------------------------------------------------
* COM level DirectSound initilization support.
*
* 'SYSTEM' level
*
****************************************************************************************/
#ifndef __DIRECT_SOUND_H__
#define __DIRECT_SOUND_H__
#include "Common.h"
m_boolean DS_InitDirectSound( void );
m_boolean DS_SetAudioContentPath( char* , m_boolean );
m_boolean DS_LoadSegment( char* );
void DS_ShutdownDirectSound( void );
#endif