Source code of Windows XP (NT5)
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.

35 lines
421 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. mouse.h
  5. Abstract:
  6. Mouse management for MEP
  7. Author:
  8. Ramon Juan San Andres (ramonsa) 07-Nov-1991
  9. Revision History:
  10. --*/
  11. //
  12. // Mouse flags
  13. //
  14. #define MOUSE_CLICK_LEFT 0x0001
  15. #define MOUSE_CLICK_RIGHT 0x0002
  16. #define MOUSE_DOUBLE_CLICK 0x0010
  17. //
  18. // The Mouse handler
  19. //
  20. void DoMouse( ROW Row, COLUMN Col, DWORD MouseFlags );