mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
10 lines
139 B
C
10 lines
139 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
// Enum type to store different states of the win key
|
||
|
|
enum class ModifierKey
|
||
|
|
{
|
||
|
|
Disabled,
|
||
|
|
Left,
|
||
|
|
Right,
|
||
|
|
Both
|
||
|
|
};
|