mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
377 B
C#
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.
|
|
}
|
|
}
|
|
}
|