mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
28 lines
768 B
C++
28 lines
768 B
C++
//========= 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
|