| 592 | } |
| 593 | |
| 594 | static void PluginsDestroy(HConfig config) |
| 595 | { |
| 596 | const ConfigFilePluginDesc* plugin = GetFirstExtension(); |
| 597 | while (plugin != 0) |
| 598 | { |
| 599 | if (plugin->m_Destroy) |
| 600 | plugin->m_Destroy(config); |
| 601 | plugin = plugin->m_Next; |
| 602 | } |
| 603 | } |
| 604 | |
| 605 | static Result LoadFromFileInternal(const char* url, int argc, const char** argv, HConfig* config) |
| 606 | { |
no test coverage detected