does anybody has an idea how to
interface between mouse and da source code???
my senior gave me an idea abt using interrupts......
Printable View
does anybody has an idea how to
interface between mouse and da source code???
my senior gave me an idea abt using interrupts......
You need to tell the system you want mouse callback events. Some libraries provide this; I don't know how you'd do it directly using just Win32.
Its win xp and the compiler
is dev c++
do u know library or function name?
GTK+ is the library I use, but that might be overkill in this case (it's a full GUI toolkit).
Quote:
Originally Posted by rage1989
In Windows you handle the mouse messages which are sent to your window, for example: WM_MOUSEMOVE.Quote:
Originally Posted by rage1989