Files
Aerofoil/GpCommon/IGpAudioDriver.h

16 lines
243 B
C
Raw Normal View History

#pragma once
2020-01-05 02:33:03 -05:00
#include <stdint.h>
struct IGpAudioChannel;
2019-12-21 18:40:17 -05:00
struct IGpAudioDriver
{
public:
virtual IGpAudioChannel *CreateChannel() = 0;
2020-01-05 02:33:03 -05:00
virtual void SetMasterVolume(uint32_t vol, uint32_t maxVolume) = 0;
2019-12-21 18:40:17 -05:00
virtual void Shutdown() = 0;
};