blob: 07e019b6cad622b42c80158c205d6fc03c605be5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef SND_WAVE_MIXER_H
#define SND_WAVE_MIXER_H
#pragma once
class CWaveData;
class CAudioMixer;
CAudioMixer *CreateWaveMixer( CWaveData *data, int format, int channels, int bits );
#endif // SND_WAVE_MIXER_H
|