Reactos
at master 33 lines 705 B view raw
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#ifndef WHEEL_DELTA 22# define WHEEL_DELTA 120 23#endif 24 25#ifndef WHEEL_PAGESCROLL 26# define WHEEL_PAGESCROLL UINT_MAX 27#endif 28 29#ifndef SPI_SETWHEELSCROLLLINES 30# define SPI_SETWHEELSCROLLLINES 105 31#endif 32 33#endif /* _ZMOUSE_H */