Files
Aerofoil/GpCommon/GpAudioDriverProperties.h

23 lines
342 B
C
Raw Normal View History

2019-12-21 18:40:17 -05:00
#pragma once
#include "EGpAudioDriverType.h"
2020-09-28 09:58:19 -04:00
namespace PortabilityLayer
{
class HostSystemServices;
}
2019-12-21 18:40:17 -05:00
struct IGpAudioDriver;
struct IGpLogDriver;
2019-12-21 18:40:17 -05:00
struct GpAudioDriverProperties
{
EGpAudioDriverType m_type;
unsigned int m_sampleRate;
2019-12-21 18:40:17 -05:00
bool m_debug;
IGpLogDriver *m_logger;
2020-09-28 09:58:19 -04:00
PortabilityLayer::HostSystemServices *m_systemServices;
2019-12-21 18:40:17 -05:00
};