Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __WINE_ZMOUSE_H
00022 #define __WINE_ZMOUSE_H
00023
00024 #include <wchar.h>
00025
00026 #define MSH_MOUSEWHEEL L"MSWHEEL_ROLLMSG"
00027 #define MOUSEZ_CLASSNAME L"MouseZ"
00028 #define MOUSEZ_TITLE L"Magellan MSWHEEL"
00029
00030 #define MSH_WHEELMODULE_CLASS (MOUSEZ_CLASSNAME)
00031 #define MSH_WHEELMODULE_TITLE (MOUSEZ_TITLE)
00032
00033 #define MSH_WHEELSUPPORT L"MSH_WHEELSUPPORT_MSG"
00034
00035 #define MSH_SCROLL_LINES L"MSH_SCROLL_LINES_MSG"
00036
00037 #ifndef WHEEL_DELTA
00038 #define WHEEL_DELTA 120
00039 #endif
00040
00041 #ifndef WHEEL_PAGESCROLL
00042 #define WHEEL_PAGESCROLL (UINT_MAX)
00043 #endif
00044
00045 #ifndef SPI_SETWHEELSCROLLLINES
00046 #define SPI_SETWHEELSCROLLLINES 105
00047 #endif
00048
00049 #endif