| 374 | } |
| 375 | |
| 376 | MaaBool MaaGlobalLoadPlugin(const char* library_path) |
| 377 | { |
| 378 | LogFunc << VAR(library_path); |
| 379 | |
| 380 | if (!library_path) { |
| 381 | LogError << "library_path is null"; |
| 382 | return false; |
| 383 | } |
| 384 | |
| 385 | return MAA_GLOBAL_NS::PluginMgr::get_instance().load(MAA_NS::path(library_path)); |
| 386 | } |
| 387 | |
| 388 | MaaBool MaaSetGlobalOption(MaaGlobalOption key, MaaOptionValue value, MaaOptionValueSize val_size) |
| 389 | { |