You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
// This code is distributed under MIT license.
|
|
// Copyright (c) 2015 George Mamaladze
|
|
// See license.txt or http://opensource.org/licenses/mit-license.php
|
|
|
|
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;
|
|
}
|
|
} |