mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
This uses IVirtualDesktopManagerInternal*, which is an undocumented Windows Shell internal API. These interfaces are not stable and can change across Windows updates, so using them in PowerToys carries some long-term risk
18 lines
578 B
C++
18 lines
578 B
C++
#pragma once
|
|
|
|
enum class SettingId
|
|
{
|
|
ScheduleMode = 0,
|
|
Latitude,
|
|
Longitude,
|
|
LightTime,
|
|
DarkTime,
|
|
Sunrise_Offset,
|
|
Sunset_Offset,
|
|
ChangeSystem,
|
|
ChangeApps
|
|
};
|
|
|
|
constexpr wchar_t PERSONALIZATION_REGISTRY_PATH[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize";
|
|
constexpr wchar_t NIGHT_LIGHT_REGISTRY_PATH[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\CloudStore\\Store\\DefaultAccount\\Current\\default$windows.data.bluelightreduction.bluelightreductionstate\\windows.data.bluelightreduction.bluelightreductionstate";
|