Remotely/ScreenCast.Linux/Services/AudioCapturerLinux.cs
2021-07-29 07:56:16 -07:00

18 lines
383 B
C#

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