commit | 4bdf4af11ec1f51d3cc79ccf097c4f473aae4eaf | [log] [tgz] |
---|---|---|
author | Stephane Lussier <stephane@macadamian.com> | Tue Apr 18 11:56:33 2000 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Apr 18 11:56:33 2000 +0000 |
tree | 9b5bfb4c1cbbf686706a858c6530dfe3acb230b3 | |
parent | e9b2f3c0f43be80694836e79b71d8c6b942074d4 [diff] [blame] |
Implemented Mousewheel support.
diff --git a/windows/input.c b/windows/input.c index f124c0b..089e468 100644 --- a/windows/input.c +++ b/windows/input.c
@@ -275,6 +275,11 @@ hardware_event( WM_MBUTTONUP, keyState, 0L, PosX, PosY, time, extra ); } + if ( dwFlags & MOUSEEVENTF_WHEEL ) + { + hardware_event( WM_MOUSEWHEEL, + keyState, 0L, PosX, PosY, time, extra ); + } } /***********************************************************************