| 317 | } |
| 318 | |
| 319 | void MaaControllerDestroy(MaaController* ctrl) |
| 320 | { |
| 321 | LogFunc << VAR_VOIDP(ctrl); |
| 322 | |
| 323 | if (ctrl == nullptr) { |
| 324 | LogError << "handle is null"; |
| 325 | return; |
| 326 | } |
| 327 | |
| 328 | delete ctrl; |
| 329 | } |
| 330 | |
| 331 | MaaResource* MaaResourceCreate() |
| 332 | { |
no outgoing calls