Files
PowerToys/src/modules/powerdisplay/PowerDisplayModuleInterface/Constants.h
2025-12-01 06:09:26 +08:00

12 lines
374 B
C++

#include <string>
namespace PowerDisplayConstants
{
// Name of the powertoy module.
inline const std::wstring ModuleKey = L"PowerDisplay";
// Process synchronization constants
inline const wchar_t* ProcessReadyEventName = L"Local\\PowerToys_PowerDisplay_Ready";
constexpr DWORD ProcessReadyTimeoutMs = 5000;
constexpr DWORD FallbackDelayMs = 500;
}