Files
better-genshin-impact/Common/MouseKeyHook/WinApi/HookIds.cs
2024-12-18 23:17:52 +08:00

30 lines
1.1 KiB
C#

// This code is distributed under MIT license.
// Copyright (c) 2015 George Mamaladze
// See license.txt or https://mit-license.org/
namespace Gma.System.MouseKeyHook.WinApi
{
internal static class HookIds
{
/// <summary>
/// Installs a hook procedure that monitors mouse messages. For more information, see the MouseProc hook procedure.
/// </summary>
internal const int WH_MOUSE = 7;
/// <summary>
/// Installs a hook procedure that monitors keystroke messages. For more information, see the KeyboardProc hook
/// procedure.
/// </summary>
internal const int WH_KEYBOARD = 2;
/// <summary>
/// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level mouse input events.
/// </summary>
internal const int WH_MOUSE_LL = 14;
/// <summary>
/// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level keyboard input events.
/// </summary>
internal const int WH_KEYBOARD_LL = 13;
}
}