mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
338 B
C#
16 lines
338 B
C#
using Remotely.Desktop.Shared.Abstractions;
|
|
|
|
namespace Remotely.Desktop.Linux.Services;
|
|
|
|
public class AudioCapturerLinux : IAudioCapturer
|
|
{
|
|
#pragma warning disable CS0067
|
|
public event EventHandler<byte[]>? AudioSampleReady;
|
|
#pragma warning restore
|
|
|
|
public void ToggleAudio(bool toggleOn)
|
|
{
|
|
// Not implemented.
|
|
}
|
|
}
|