mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
19 lines
323 B
C++
19 lines
323 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct IGpAudioChannel;
|
|
struct IGpPrefsHandler;
|
|
|
|
struct IGpAudioDriver
|
|
{
|
|
public:
|
|
virtual IGpAudioChannel *CreateChannel() = 0;
|
|
|
|
virtual void SetMasterVolume(uint32_t vol, uint32_t maxVolume) = 0;
|
|
|
|
virtual void Shutdown() = 0;
|
|
|
|
virtual IGpPrefsHandler *GetPrefsHandler() const = 0;
|
|
};
|