2020-04-21 10:25:14 -07:00
|
|
|
#pragma once
|
2020-12-15 15:16:09 +03:00
|
|
|
|
|
|
|
#include <cstdint>
|
2020-04-21 10:25:14 -07:00
|
|
|
|
|
|
|
namespace CommonSharedConstants
|
|
|
|
{
|
|
|
|
// Flag that can be set on an input event so that it is ignored by Keyboard Manager
|
2020-12-15 15:16:09 +03:00
|
|
|
const uintptr_t KEYBOARDMANAGER_INJECTED_FLAG = 0x1;
|
2020-04-23 08:37:52 -07:00
|
|
|
|
|
|
|
// Fake key code to represent VK_WIN.
|
2020-12-15 15:16:09 +03:00
|
|
|
inline const int VK_WIN_BOTH = 0x104;
|
2020-09-21 12:44:16 +02:00
|
|
|
|
|
|
|
// Path to the event used by PowerLauncher
|
|
|
|
const wchar_t POWER_LAUNCHER_SHARED_EVENT[] = L"Local\\PowerToysRunInvokeEvent-30f26ad7-d36d-4c0e-ab02-68bb5ff3c4ab";
|
2020-10-02 15:36:36 +03:00
|
|
|
|
2021-03-19 19:03:12 +02:00
|
|
|
const wchar_t RUN_SEND_SETTINGS_TELEMETRY_EVENT[] = L"Local\\PowerToysRunInvokeEvent-638ec522-0018-4b96-837d-6bd88e06f0d6";
|
|
|
|
|
2021-03-02 20:56:37 +03:00
|
|
|
// Path to the event used to show Color Picker
|
|
|
|
const wchar_t SHOW_COLOR_PICKER_SHARED_EVENT[] = L"Local\\ShowColorPickerEvent-8c46be2a-3e05-4186-b56b-4ae986ef2525";
|
|
|
|
|
|
|
|
// Path to the event used to show Shortcut Guide
|
|
|
|
const wchar_t SHOW_SHORTCUT_GUIDE_SHARED_EVENT[] = L"Local\\ShowShortcutGuideEvent-6982d682-7462-404f-95af-86ae3f089c4f";
|
|
|
|
|
2020-10-02 15:36:36 +03:00
|
|
|
// Max DWORD for key code to disable keys.
|
2020-12-15 15:16:09 +03:00
|
|
|
const int VK_DISABLED = 0x100;
|
2020-10-02 15:36:36 +03:00
|
|
|
}
|