Remotely/Desktop.Core/Interfaces/IAudioCapturer.cs

11 lines
207 B
C#

using System;
namespace Remotely.Desktop.Core.Interfaces
{
public interface IAudioCapturer
{
event EventHandler<byte[]> AudioSampleReady;
void ToggleAudio(bool toggleOn);
}
}