Files
Aerofoil/GpCommon/IGpAudioChannel.h

15 lines
308 B
C
Raw Permalink Normal View History

#pragma once
2021-03-18 17:08:11 -04:00
#include <stddef.h>
2020-09-28 09:58:19 -04:00
struct IGpAudioChannelCallbacks;
struct IGpAudioBuffer;
struct IGpAudioChannel
{
virtual void SetAudioChannelContext(IGpAudioChannelCallbacks *callbacks) = 0;
virtual bool PostBuffer(IGpAudioBuffer *buffer) = 0;
virtual void Stop() = 0;
2020-09-28 09:58:19 -04:00
virtual void Destroy() = 0;
};