mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
23 lines
342 B
C++
23 lines
342 B
C++
#pragma once
|
|
|
|
#include "EGpAudioDriverType.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostSystemServices;
|
|
}
|
|
|
|
struct IGpAudioDriver;
|
|
struct IGpLogDriver;
|
|
|
|
struct GpAudioDriverProperties
|
|
{
|
|
EGpAudioDriverType m_type;
|
|
|
|
unsigned int m_sampleRate;
|
|
bool m_debug;
|
|
|
|
IGpLogDriver *m_logger;
|
|
PortabilityLayer::HostSystemServices *m_systemServices;
|
|
};
|