diff options
Diffstat (limited to 'soundsystem/snd_dev_wave.h')
| -rw-r--r-- | soundsystem/snd_dev_wave.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/soundsystem/snd_dev_wave.h b/soundsystem/snd_dev_wave.h new file mode 100644 index 0000000..8935c9a --- /dev/null +++ b/soundsystem/snd_dev_wave.h @@ -0,0 +1,27 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef SND_DEV_WAVE_H +#define SND_DEV_WAVE_H +#ifdef _WIN32 +#pragma once +#endif + + +//----------------------------------------------------------------------------- +// Forward declarations +//----------------------------------------------------------------------------- +class IAudioDevice; + + +//----------------------------------------------------------------------------- +// Creates a device that mixes WAVs using windows +//----------------------------------------------------------------------------- +IAudioDevice *Audio_CreateWaveDevice( void ); + + +#endif // SND_DEV_WAVE_H |