| 145 | } |
| 146 | |
| 147 | MaaCtrlId MaaControllerPostStartApp(MaaController* ctrl, const char* intent) |
| 148 | { |
| 149 | LogFunc << VAR_VOIDP(ctrl) << VAR(intent); |
| 150 | |
| 151 | if (!ctrl) { |
| 152 | LogError << "handle is null"; |
| 153 | return MaaInvalidId; |
| 154 | } |
| 155 | |
| 156 | if (!intent) { |
| 157 | LogError << "intent is null"; |
| 158 | return MaaInvalidId; |
| 159 | } |
| 160 | |
| 161 | return ctrl->post_start_app(intent); |
| 162 | } |
| 163 | |
| 164 | MaaCtrlId MaaControllerPostStopApp(MaaController* ctrl, const char* intent) |
| 165 | { |
no test coverage detected