mirror of
https://github.com/microsoft/PowerToys
synced 2025-08-22 18:17:19 +00:00
8 lines
214 B
C
8 lines
214 B
C
|
#pragma once
|
||
|
#include "common.h"
|
||
|
|
||
|
namespace CommonSharedConstants
|
||
|
{
|
||
|
// Flag that can be set on an input event so that it is ignored by Keyboard Manager
|
||
|
const ULONG_PTR KEYBOARDMANAGER_INJECTED_FLAG = 0x1;
|
||
|
}
|