| 147 | } |
| 148 | |
| 149 | MaaBool CustomConnect(void* trans_arg) |
| 150 | { |
| 151 | auto customCtx = reinterpret_cast<CustomControllerContext*>(trans_arg); |
| 152 | auto ctx = customCtx->callbacks["connect"]; |
| 153 | return ctx->Call<bool>([&](maajs::FunctionType func) { return func.Call({ }); }); |
| 154 | } |
| 155 | |
| 156 | MaaBool CustomConnected(void* trans_arg) |
| 157 | { |