| 31 | } |
| 32 | |
| 33 | void MaaAgentClientDestroy(MaaAgentClient* client) |
| 34 | { |
| 35 | LogFunc << VAR_VOIDP(client); |
| 36 | |
| 37 | if (client == nullptr) { |
| 38 | LogError << "handle is null"; |
| 39 | return; |
| 40 | } |
| 41 | |
| 42 | delete client; |
| 43 | } |
| 44 | |
| 45 | MaaBool MaaAgentClientIdentifier(MaaAgentClient* client, MaaStringBuffer* identifier) |
| 46 | { |