| 306 | } |
| 307 | |
| 308 | MaaBool CustomTouchUp(int32_t contact, void* trans_arg) |
| 309 | { |
| 310 | auto customCtx = reinterpret_cast<CustomControllerContext*>(trans_arg); |
| 311 | auto ctx = customCtx->callbacks["touch_up"]; |
| 312 | return ctx->Call<bool>([&](maajs::FunctionType func) { |
| 313 | return func.Call( |
| 314 | { |
| 315 | maajs::NumberType::New(func.Env(), contact), |
| 316 | }); |
| 317 | }); |
| 318 | } |
| 319 | |
| 320 | MaaBool CustomClickKey(int32_t keycode, void* trans_arg) |
| 321 | { |