Re: [GD-Windows] Mouse wheel
Brought to you by:
vexxed72
From: Pierre T. <p.t...@wa...> - 2002-10-15 04:03:22
|
> hmm... that's strange, last time I tried, doing that didn't work, but I was > probably missing something else. Well, I did nothing special here, just added this and it worked : #define WM_MOUSEWHEEL 0x020A #define WHEEL_DELTA 120 case WM_MOUSEWHEEL: { mMouse.mWheelValue = (wparam>>16)/WHEEL_DELTA; [snip] } break; |