| 134 | void ddio_MouseClose() { DDIO_mouse_init = false; } |
| 135 | |
| 136 | void ddio_MouseSetLimits(int left, int top, int right, int bottom, int zmin, int zmax) { |
| 137 | DDIO_mouse_state.l = left; |
| 138 | DDIO_mouse_state.t = top; |
| 139 | DDIO_mouse_state.r = right; |
| 140 | DDIO_mouse_state.b = bottom; |
| 141 | } |
| 142 | |
| 143 | void ddio_MouseGetLimits(int *left, int *top, int *right, int *bottom, int *zmin, int *zmax) { |
| 144 | *left = DDIO_mouse_state.l; |
no outgoing calls
no test coverage detected