// 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 /// WMKEYDOWN = 256, /// /// Key up /// WMKEYUP = 257, /// /// System key up /// WMSYSKEYUP = 261, /// /// System key down /// WMSYSKEYDOWN = 260, } }