You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ManagedShell.Interop/NativeMethods.User32.cs
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3046,6 +3046,32 @@ public enum KLF : uint
3046
3046
SETFORPROCESS=0x00000100
3047
3047
}
3048
3048
3049
+
[Flags]
3050
+
publicenumMOD:uint
3051
+
{
3052
+
/// <summary>
3053
+
/// Either ALT key must be held down.
3054
+
/// </summary>
3055
+
ALT=0x0001,
3056
+
/// <summary>
3057
+
/// Either CTRL key must be held down.
3058
+
/// </summary>
3059
+
CONTROL=0x0002,
3060
+
/// <summary>
3061
+
/// Changes the hotkey behavior so that the keyboard auto-repeat does not yield multiple hotkey notifications.
3062
+
/// Windows Vista: This flag is not supported.
3063
+
/// </summary>
3064
+
NOREPEAT=0x4000,
3065
+
/// <summary>
3066
+
/// Either SHIFT key must be held down.
3067
+
/// </summary>
3068
+
SHIFT=0x0004,
3069
+
/// <summary>
3070
+
/// Either WINDOWS key must be held down. These keys are labeled with the Windows logo. Keyboard shortcuts that involve the WINDOWS key are reserved for use by the operating system.
0 commit comments