Files
Aerofoil/GpCommon/GpAudioDriverProperties.h

19 lines
290 B
C
Raw Normal View History

2019-12-21 18:40:17 -05:00
#pragma once
#include "EGpAudioDriverType.h"
struct IGpSystemServices;
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;
IGpSystemServices *m_systemServices;
2019-12-21 18:40:17 -05:00
};