// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Wox.Infrastructure.Hotkey { public enum KeyEvent { /// /// Key down /// WM_KEYDOWN = 256, /// /// Key up /// WM_KEYUP = 257, /// /// System key up /// WM_SYSKEYUP = 261, /// /// System key down /// WM_SYSKEYDOWN = 260, } }