mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01: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;
|
||
|
|
}
|