mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
21 lines
335 B
C
21 lines
335 B
C
#pragma once
|
|
|
|
#include "EGpAudioDriverType.h"
|
|
|
|
struct IGpSystemServices;
|
|
struct IGpAudioDriver;
|
|
struct IGpLogDriver;
|
|
struct IGpAllocator;
|
|
|
|
struct GpAudioDriverProperties
|
|
{
|
|
EGpAudioDriverType m_type;
|
|
|
|
unsigned int m_sampleRate;
|
|
bool m_debug;
|
|
|
|
IGpLogDriver *m_logger;
|
|
IGpSystemServices *m_systemServices;
|
|
IGpAllocator *m_alloc;
|
|
};
|