// 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 { /// /// Installs a hook procedure that monitors mouse messages. For more information, see the MouseProc hook procedure. /// internal const int WH_MOUSE = 7; /// /// Installs a hook procedure that monitors keystroke messages. For more information, see the KeyboardProc hook /// procedure. /// internal const int WH_KEYBOARD = 2; /// /// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level mouse input events. /// internal const int WH_MOUSE_LL = 14; /// /// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level keyboard input events. /// internal const int WH_KEYBOARD_LL = 13; } }