# Conflicts: # .gitignore # App.xaml # App.xaml.cs # AudioWatcher.cs # Delcom/DeviceManagement.cs # Delcom/StoplightIndicator.cs # LICENSE.md # LightController.cs # Properties/AssemblyInfo.cs # Properties/Resources.Designer.cs # Properties/Resources.resx # Properties/Settings.Designer.cs # Properties/Settings.settings # README.md # UpdateCheck.cs # WorkIndicator.csproj # WorkIndicator.sln # WorkIndicator.sln.DotSettings
21 lines
389 B
C#
21 lines
389 B
C#
namespace WorkIndicator;
|
|
|
|
internal static class AudioWatcher
|
|
{
|
|
public delegate void MicrophoneInUseChangedDelegate(bool microphoneInUse);
|
|
|
|
public static event MicrophoneInUseChangedDelegate MicrophoneInUseChanged;
|
|
|
|
public static void Start()
|
|
{
|
|
}
|
|
|
|
public static void Stop()
|
|
{
|
|
}
|
|
|
|
public static bool MicrophoneInUse()
|
|
{
|
|
return false;
|
|
}
|
|
} |