Remotely/Desktop.Linux/Services/AudioCapturerLinux.cs

18 lines
377 B
C#

using Remotely.Desktop.Core.Interfaces;
using System;
namespace Remotely.Desktop.Linux.Services
{
public class AudioCapturerLinux : IAudioCapturer
{
#pragma warning disable
public event EventHandler<byte[]> AudioSampleReady;
#pragma warning restore
public void ToggleAudio(bool toggleOn)
{
// Not implemented.
}
}
}