home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.5 / Group3 / zmouse.h < prev   
C/C++ Source or Header  |  1999-11-07  |  566b  |  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.