return mouse button up count
| 580 | |
| 581 | // return mouse button up count |
| 582 | int ddio_MouseBtnUpCount(int btn) { |
| 583 | if (btn < 0 || btn >= N_MSEBTNS) |
| 584 | return 0; |
| 585 | int n_ups = DIM_buttons.up_count[btn]; |
| 586 | DIM_buttons.up_count[btn] = 0; |
| 587 | return n_ups; |
| 588 | } |
| 589 | |
| 590 | char Ctltext_MseBtnBindings[N_MSEBTNS][32] = {"mse-1\0\0\0\0\0\0\0\0\0\0\0\0", |
| 591 | "mse-2\0\0\0\0\0\0\0\0\0\0\0\0", |
no outgoing calls
no test coverage detected