mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Common: Move the Event class to a separate file, and add tests for it. Fix includes everywhere to match this.
This commit is contained in:
@ -5,7 +5,9 @@
|
||||
#pragma once
|
||||
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
#include "Common/StdMutex.h"
|
||||
#include "Common/StdThread.h"
|
||||
|
||||
#if defined(HAVE_AO) && HAVE_AO
|
||||
#include <ao/ao.h>
|
||||
|
@ -9,6 +9,8 @@
|
||||
|
||||
#include "AudioCommon/AudioCommon.h"
|
||||
#include "AudioCommon/DSoundStream.h"
|
||||
#include "Common/StdThread.h"
|
||||
#include "Common/Thread.h"
|
||||
|
||||
bool DSound::CreateBuffer()
|
||||
{
|
||||
|
@ -5,7 +5,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
#include "Common/StdThread.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <Windows.h>
|
||||
|
@ -5,6 +5,8 @@
|
||||
#include "AudioCommon/aldlist.h"
|
||||
#include "AudioCommon/DPL2Decoder.h"
|
||||
#include "AudioCommon/OpenALStream.h"
|
||||
#include "Common/StdThread.h"
|
||||
#include "Common/Thread.h"
|
||||
|
||||
#if defined HAVE_OPENAL && HAVE_OPENAL
|
||||
|
||||
|
@ -5,7 +5,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
#include "Common/StdThread.h"
|
||||
#include "Core/Core.h"
|
||||
#include "Core/HW/AudioInterface.h"
|
||||
#include "Core/HW/SystemTimers.h"
|
||||
|
@ -5,7 +5,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
#include "Common/StdThread.h"
|
||||
|
||||
class OpenSLESStream final : public SoundStream
|
||||
{
|
||||
|
@ -5,6 +5,7 @@
|
||||
#include <xaudio2.h>
|
||||
#include "AudioCommon/AudioCommon.h"
|
||||
#include "AudioCommon/XAudio2Stream.h"
|
||||
#include "Common/Event.h"
|
||||
|
||||
#ifndef XAUDIO2_DLL
|
||||
#error You are building this module against the wrong version of DirectX. You probably need to remove DXSDK_DIR from your include path.
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <memory>
|
||||
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
#include "AudioCommon/AudioCommon.h"
|
||||
#include "AudioCommon/XAudio2_7Stream.h"
|
||||
#include "Common/Event.h"
|
||||
|
||||
#ifdef HAVE_DXSDK
|
||||
#include <dxsdkver.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include <memory>
|
||||
#include "AudioCommon/SoundStream.h"
|
||||
#include "Common/Thread.h"
|
||||
#include "Common/Event.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
|
Reference in New Issue
Block a user