mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
16 lines
520 B
C++
16 lines
520 B
C++
|
|
#include "CameraStateUpdateChannels.h"
|
||
|
|
|
||
|
|
#include "naming.h"
|
||
|
|
|
||
|
|
std::wstring_view CameraOverlayImageChannel::endpoint()
|
||
|
|
{
|
||
|
|
static const std::wstring endpoint = ObtainStableGlobalNameForKernelObject(L"PowerToysVideoConferenceCameraOverlayImageChannelSharedMemory", true);
|
||
|
|
return endpoint;
|
||
|
|
}
|
||
|
|
|
||
|
|
std::wstring_view CameraSettingsUpdateChannel::endpoint()
|
||
|
|
{
|
||
|
|
static const std::wstring endpoint = ObtainStableGlobalNameForKernelObject(L"PowerToysVideoConferenceSettingsChannelSharedMemory", true);
|
||
|
|
return endpoint;
|
||
|
|
}
|