| 581 | } |
| 582 | |
| 583 | static void PluginsCreate(HConfig config) |
| 584 | { |
| 585 | const ConfigFilePluginDesc* plugin = GetFirstExtension(); |
| 586 | while (plugin != 0) |
| 587 | { |
| 588 | if (plugin->m_Create) |
| 589 | plugin->m_Create(config); |
| 590 | plugin = plugin->m_Next; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | static void PluginsDestroy(HConfig config) |
| 595 | { |
no test coverage detected