RageSoundDriver

This commit is contained in:
Glenn Maynard
2007-01-18 09:20:56 +00:00
parent 97f06ab454
commit 5486753c90
7 changed files with 13 additions and 13 deletions
@@ -3,11 +3,11 @@
#include "RageSound.h" #include "RageSound.h"
#include "RageThreads.h" #include "RageThreads.h"
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
#include "ALSA9Helpers.h" #include "ALSA9Helpers.h"
class RageSoundDriver_ALSA9_Software: public RageSound_Generic_Software class RageSoundDriver_ALSA9_Software: public RageSoundDriver
{ {
public: public:
RageSoundDriver_ALSA9_Software(); RageSoundDriver_ALSA9_Software();
@@ -3,9 +3,9 @@
#include "DSoundHelpers.h" #include "DSoundHelpers.h"
#include "RageThreads.h" #include "RageThreads.h"
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
class RageSoundDriver_DSound_Software: public RageSound_Generic_Software class RageSoundDriver_DSound_Software: public RageSoundDriver
{ {
public: public:
RageSoundDriver_DSound_Software(); RageSoundDriver_DSound_Software();
@@ -1,5 +1,5 @@
#include "global.h" #include "global.h"
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
#include "RageLog.h" #include "RageLog.h"
#include "RageSound.h" #include "RageSound.h"
@@ -1,9 +1,9 @@
#ifndef RAGE_SOUND_NULL #ifndef RAGE_SOUND_NULL
#define RAGE_SOUND_NULL #define RAGE_SOUND_NULL
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
class RageSoundDriver_Null: public RageSound_Generic_Software class RageSoundDriver_Null: public RageSoundDriver
{ {
public: public:
RageSoundDriver_Null(); RageSoundDriver_Null();
@@ -1,11 +1,11 @@
#ifndef RAGE_SOUND_WAVEOUT #ifndef RAGE_SOUND_WAVEOUT
#define RAGE_SOUND_WAVEOUT #define RAGE_SOUND_WAVEOUT
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
#include "RageThreads.h" #include "RageThreads.h"
#include "RageTimer.h" #include "RageTimer.h"
class RageSoundDriver_OSS: public RageSound_Generic_Software class RageSoundDriver_OSS: public RageSoundDriver
{ {
int fd; int fd;
@@ -1,14 +1,14 @@
#ifndef RAGE_SOUND_WAVEOUT_H #ifndef RAGE_SOUND_WAVEOUT_H
#define RAGE_SOUND_WAVEOUT_H #define RAGE_SOUND_WAVEOUT_H
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
#include "RageThreads.h" #include "RageThreads.h"
#include <windows.h> #include <windows.h>
struct WinWdmStream; struct WinWdmStream;
struct WinWdmFilter; struct WinWdmFilter;
class RageSoundDriver_WDMKS: public RageSound_Generic_Software class RageSoundDriver_WDMKS: public RageSoundDriver
{ {
public: public:
RageSoundDriver_WDMKS(); RageSoundDriver_WDMKS();
@@ -1,12 +1,12 @@
#ifndef RAGE_SOUND_WAVEOUT_H #ifndef RAGE_SOUND_WAVEOUT_H
#define RAGE_SOUND_WAVEOUT_H #define RAGE_SOUND_WAVEOUT_H
#include "RageSoundDriver_Generic_Software.h" #include "RageSoundDriver.h"
#include "RageThreads.h" #include "RageThreads.h"
#include <windows.h> #include <windows.h>
#include <mmsystem.h> #include <mmsystem.h>
class RageSoundDriver_WaveOut: public RageSound_Generic_Software class RageSoundDriver_WaveOut: public RageSoundDriver
{ {
public: public:
RageSoundDriver_WaveOut(); RageSoundDriver_WaveOut();