| 103 | } |
| 104 | |
| 105 | void ControllerImpl::clear_sinks() |
| 106 | { |
| 107 | MaaControllerClearSinks(controller); |
| 108 | for (const auto& [_, ctx] : sinks) { |
| 109 | delete ctx; |
| 110 | } |
| 111 | sinks.clear(); |
| 112 | } |
| 113 | |
| 114 | void ControllerImpl::set_screenshot_target_long_side(int32_t value) |
| 115 | { |
nothing calls this directly
no test coverage detected