mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
* add new VideoConference module for muting mic/cam Co-authored-by: PrzemyslawTusinski <61138537+PrzemyslawTusinski@users.noreply.github.com> Co-authored-by: Niels Laute <niels.laute@live.nl>
13 lines
340 B
C++
13 lines
340 B
C++
#pragma once
|
|
#include "VideoConferenceModule.h"
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
static void RegisterProvider() noexcept;
|
|
static void UnregisterProvider() noexcept;
|
|
static void SettingsChanged(const struct VideoConferenceSettings &settings) noexcept;
|
|
static void MicrophoneMuted() noexcept;
|
|
static void CameraMuted() noexcept;
|
|
};
|