i guess u want both the mouse buttons to do the same function. so u define something like this:

Code:
funtion myMouse()
{
 //here, do the mouse stuffs
}

void main()
{
 ...
 on_mouse_left = myMouse;
 on_mouse_right = myMouse;
 on_mouse_middle = myMouse;
 ...
}




A7 commercial Team / VC++ 2008 Pro
homepage | twitter | facebook