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 line
1.1 KiB

  1. // This code is distributed under MIT license.
  2. // Copyright (c) 2015 George Mamaladze
  3. // See license.txt or https://mit-license.org/
  4. namespace Gma.System.MouseKeyHook.WinApi
  5. {
  6. internal static class HookIds
  7. {
  8. /// <summary>
  9. /// Installs a hook procedure that monitors mouse messages. For more information, see the MouseProc hook procedure.
  10. /// </summary>
  11. internal const int WH_MOUSE = 7;
  12. /// <summary>
  13. /// Installs a hook procedure that monitors keystroke messages. For more information, see the KeyboardProc hook
  14. /// procedure.
  15. /// </summary>
  16. internal const int WH_KEYBOARD = 2;
  17. /// <summary>
  18. /// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level mouse input events.
  19. /// </summary>
  20. internal const int WH_MOUSE_LL = 14;
  21. /// <summary>
  22. /// Windows NT/2000/XP/Vista/7: Installs a hook procedure that monitors low-level keyboard input events.
  23. /// </summary>
  24. internal const int WH_KEYBOARD_LL = 13;
  25. }
  26. }