mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
12 lines
374 B
C++
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;
|
|
} |