RageSoundDriver
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
|
||||
#include "RageSound.h"
|
||||
#include "RageThreads.h"
|
||||
#include "RageSoundDriver_Generic_Software.h"
|
||||
#include "RageSoundDriver.h"
|
||||
|
||||
#include "ALSA9Helpers.h"
|
||||
|
||||
class RageSoundDriver_ALSA9_Software: public RageSound_Generic_Software
|
||||
class RageSoundDriver_ALSA9_Software: public RageSoundDriver
|
||||
{
|
||||
public:
|
||||
RageSoundDriver_ALSA9_Software();
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
|
||||
#include "DSoundHelpers.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:
|
||||
RageSoundDriver_DSound_Software();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "global.h"
|
||||
#include "RageSoundDriver_Generic_Software.h"
|
||||
#include "RageSoundDriver.h"
|
||||
|
||||
#include "RageLog.h"
|
||||
#include "RageSound.h"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#ifndef 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:
|
||||
RageSoundDriver_Null();
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
#ifndef RAGE_SOUND_WAVEOUT
|
||||
#define RAGE_SOUND_WAVEOUT
|
||||
|
||||
#include "RageSoundDriver_Generic_Software.h"
|
||||
#include "RageSoundDriver.h"
|
||||
#include "RageThreads.h"
|
||||
#include "RageTimer.h"
|
||||
|
||||
class RageSoundDriver_OSS: public RageSound_Generic_Software
|
||||
class RageSoundDriver_OSS: public RageSoundDriver
|
||||
{
|
||||
int fd;
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#ifndef RAGE_SOUND_WAVEOUT_H
|
||||
#define RAGE_SOUND_WAVEOUT_H
|
||||
|
||||
#include "RageSoundDriver_Generic_Software.h"
|
||||
#include "RageSoundDriver.h"
|
||||
#include "RageThreads.h"
|
||||
#include <windows.h>
|
||||
|
||||
struct WinWdmStream;
|
||||
struct WinWdmFilter;
|
||||
|
||||
class RageSoundDriver_WDMKS: public RageSound_Generic_Software
|
||||
class RageSoundDriver_WDMKS: public RageSoundDriver
|
||||
{
|
||||
public:
|
||||
RageSoundDriver_WDMKS();
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
#ifndef RAGE_SOUND_WAVEOUT_H
|
||||
#define RAGE_SOUND_WAVEOUT_H
|
||||
|
||||
#include "RageSoundDriver_Generic_Software.h"
|
||||
#include "RageSoundDriver.h"
|
||||
#include "RageThreads.h"
|
||||
#include <windows.h>
|
||||
#include <mmsystem.h>
|
||||
|
||||
class RageSoundDriver_WaveOut: public RageSound_Generic_Software
|
||||
class RageSoundDriver_WaveOut: public RageSoundDriver
|
||||
{
|
||||
public:
|
||||
RageSoundDriver_WaveOut();
|
||||
|
||||
Reference in New Issue
Block a user