mirror of https://github.com/PCSX2/pcsx2.git
42 lines
678 B
C++
42 lines
678 B
C++
#ifndef __AsioDrivers__
|
|
#define __AsioDrivers__
|
|
|
|
#include "ginclude.h"
|
|
|
|
#if MAC
|
|
#include "CodeFragments.hpp"
|
|
|
|
class AsioDrivers : public CodeFragments
|
|
|
|
#elif WINDOWS
|
|
#include <windows.h>
|
|
#include "asiolist.h"
|
|
|
|
class AsioDrivers : public AsioDriverList
|
|
|
|
#elif SGI || BEOS
|
|
#include "asiolist.h"
|
|
|
|
class AsioDrivers : public AsioDriverList
|
|
|
|
#else
|
|
#error implement me
|
|
#endif
|
|
|
|
{
|
|
public:
|
|
AsioDrivers();
|
|
~AsioDrivers();
|
|
|
|
bool getCurrentDriverName(char *name);
|
|
long getDriverNames(char **names, long maxDrivers);
|
|
bool loadDriver(char *name);
|
|
void removeCurrentDriver();
|
|
long getCurrentDriverIndex() {return curIndex;}
|
|
protected:
|
|
unsigned long connID;
|
|
long curIndex;
|
|
};
|
|
|
|
#endif
|