When I handle WM_MOUSEMOVE
event I read the mouse position this way:
int mouse_x = GET_X_LPARAM(lParam);
int mouse_y = GET_Y_LPARAM(lParam);
I have noticed that sometimes I get events with the same mouse_x and mouse_y in a row. Does exist any rule saying when it happens ?