Files
dolphin/Source/Core/AudioCommon/AudioCommon.h
T

25 lines
568 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
2014-02-17 05:18:15 -05:00
#include "AudioCommon/SoundStream.h"
#include "Common/Common.h"
class CMixer;
extern SoundStream *soundStream;
namespace AudioCommon
{
2014-03-27 16:00:14 -07:00
SoundStream *InitSoundStream(void *hWnd);
void ShutdownSoundStream();
std::vector<std::string> GetSoundBackends();
void PauseAndLock(bool doLock, bool unpauseOnUnlock=true);
2013-01-16 20:16:56 -05:00
void UpdateSoundStream();
2014-03-27 17:56:05 -07:00
void ClearAudioBuffer(bool mute);
void SendAIBuffer(short* samples, unsigned int num_samples);
}