mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
Co-authored-by: PrzemyslawTusinski <61138537+PrzemyslawTusinski@users.noreply.github.com>
24 lines
444 B
C++
24 lines
444 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string_view>
|
|
#include <array>
|
|
|
|
struct CameraSettingsUpdateChannel
|
|
{
|
|
bool useOverlayImage = false;
|
|
bool cameraInUse = false;
|
|
|
|
std::optional<size_t> overlayImageSize;
|
|
std::optional<std::array<wchar_t, 256>> sourceCameraName;
|
|
|
|
bool newOverlayImagePosted = false;
|
|
|
|
static std::wstring_view endpoint();
|
|
};
|
|
|
|
namespace CameraOverlayImageChannel
|
|
{
|
|
std::wstring_view endpoint();
|
|
}
|