mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-27 10:15:50 +08:00
30 lines
1.1 KiB
C#
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;
|
|
}
|
|
} |