mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 23:41:19 +01:00
a0e9e53d0c
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2762 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
448 B
C++
21 lines
448 B
C++
#ifndef _AUDIO_COMMON_H
|
|
#define _AUDIO_COMMON_H
|
|
|
|
#include "Common.h"
|
|
#include "../../../PluginSpecs/pluginspecs_dsp.h"
|
|
#include "SoundStream.h"
|
|
|
|
class CMixer;
|
|
|
|
extern DSPInitialize g_dspInitialize;
|
|
extern SoundStream *soundStream;
|
|
|
|
namespace AudioCommon {
|
|
|
|
SoundStream *InitSoundStream(std::string backend, CMixer *mixer = NULL);
|
|
void ShutdownSoundStream();
|
|
std::vector<std::string> GetSoundBackends();
|
|
} // Namespace
|
|
|
|
#endif // AUDIO_COMMON
|