Page 1 of 1

WinApi WM_MOUSELAST error

Posted: Wed Jul 19, 2017 3:46 am
by luowy

Code: Select all

 
		WM_MOUSELAST* = 521 (* {0, 3, 9} *);
		WM_MOUSEWHEEL* = 522;
		 
need change to

Code: Select all

 
		WM_MOUSEWHEEL* = 522;
		WM_MOUSELAST* = 522 (* {0, 3, 9} *);
		 

luowy

Re: WinApi WM_MOUSELAST error

Posted: Wed Jul 19, 2017 5:46 am
by Josef Templ
Agree.

Note that the comment (* {0, 3, 9} *) also needs to be adjusted then.

- Josef

Re: WinApi WM_MOUSELAST error

Posted: Fri Oct 20, 2017 11:32 am
by Robert
What is the status of this error?

Re: WinApi WM_MOUSELAST error

Posted: Fri Oct 20, 2017 1:10 pm
by Josef Templ
This is not yet fixed.
Would be easy.

- Josef