home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / cecko / install / devcpp4920.exe / include / zmouse.h < prev   
Encoding:
C/C++ Source or Header  |  2001-09-14  |  590 b   |  25 lines

  1. /*
  2.        zmouse.h - Header for IntelliMouse.
  3.  
  4.        This file is part of a free library for the Win32 API.
  5.  
  6.        This library is distributed in the hope that it will be useful,
  7.        but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9.  
  10.        FIXME: This file is obviously horribly incomplete!
  11.  
  12. */
  13.  
  14. #ifndef _ZMOUSE_H
  15. #define _ZMOUSE_H
  16.  
  17. #ifndef WM_MOUSEWHEEL
  18. # define WM_MOUSEWHEEL (WM_MOUSELAST + 1)
  19. #endif
  20.  
  21. #define WHEEL_DELTA 120
  22. #define WHEEL_PAGESCROLL UINT_MAX
  23.  
  24. #endif /* _ZMOUSE_H */
  25.