| 747 | } |
| 748 | |
| 749 | void SM_ConfigsExecuted_Plugin(unsigned int serial) |
| 750 | { |
| 751 | IPluginIterator *iter = scripts->GetPluginIterator(); |
| 752 | while (iter->MorePlugins()) |
| 753 | { |
| 754 | IPlugin *plugin = iter->GetPlugin(); |
| 755 | if (plugin->GetSerial() == serial) |
| 756 | { |
| 757 | SM_DoSingleExecFwds(plugin->GetBaseContext()); |
| 758 | break; |
| 759 | } |
| 760 | iter->NextPlugin(); |
| 761 | } |
| 762 | iter->Release(); |
| 763 | } |
| 764 | |
| 765 | void SM_ExecuteForPlugin(IPluginContext *ctx) |
| 766 | { |
no test coverage detected