| 330 | } |
| 331 | |
| 332 | MaaBool MaaResourceSetOption(MaaResource* res, MaaResOption key, MaaOptionValue value, MaaOptionValueSize val_size) |
| 333 | { |
| 334 | LogFunc << VAR_VOIDP(res) << VAR(key) << VAR_VOIDP(value) << VAR(val_size); |
| 335 | |
| 336 | if (!res) { |
| 337 | LogError << "handle is null"; |
| 338 | return false; |
| 339 | } |
| 340 | |
| 341 | return res->set_option(key, value, val_size); |
| 342 | } |
| 343 | |
| 344 | MaaBool MaaResourceGetHash(const MaaResource* res, MaaStringBuffer* buffer) |
| 345 | { |
no test coverage detected