| 191 | } |
| 192 | |
| 193 | MaaCtrlId MaaControllerPostTouchMove(MaaController* ctrl, int32_t contact, int32_t x, int32_t y, int32_t pressure) |
| 194 | { |
| 195 | LogFunc << VAR_VOIDP(ctrl) << VAR(contact) << VAR(x) << VAR(y) << VAR(pressure); |
| 196 | |
| 197 | if (!ctrl) { |
| 198 | LogError << "handle is null"; |
| 199 | return MaaInvalidId; |
| 200 | } |
| 201 | |
| 202 | return ctrl->post_touch_move(contact, x, y, pressure); |
| 203 | } |
| 204 | |
| 205 | MaaCtrlId MaaControllerPostTouchUp(MaaController* ctrl, int32_t contact) |
| 206 | { |
no test coverage detected