| 715 | } |
| 716 | |
| 717 | Result Load(const char* url, int argc, const char** argv, HConfig* config) |
| 718 | { |
| 719 | Result result = DoLoad(url, argc, argv, config); |
| 720 | if (result == RESULT_OK) |
| 721 | { |
| 722 | PluginsCreate(*config); |
| 723 | } |
| 724 | return result; |
| 725 | } |
| 726 | |
| 727 | void Delete(HConfig config) |
| 728 | { |
nothing calls this directly
no test coverage detected