2019-12-11 00:51:42 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-12-21 18:40:17 -05:00
|
|
|
struct IGpAudioDriver;
|
2019-12-11 00:51:42 -05:00
|
|
|
struct GpAudioDriverProperties;
|
|
|
|
|
|
|
|
|
|
class GpAudioDriverFactoryXAudio2
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static IGpAudioDriver *Create(const GpAudioDriverProperties &properties);
|
|
|
|
|
};
|