MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / SM_ConfigsExecuted_Plugin

Function SM_ConfigsExecuted_Plugin

core/CoreConfig.cpp:749–763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

747}
748
749void 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
765void SM_ExecuteForPlugin(IPluginContext *ctx)
766{

Callers 1

CoreConfig.cppFile · 0.85

Calls 8

SM_DoSingleExecFwdsFunction · 0.85
GetBaseContextMethod · 0.80
GetPluginIteratorMethod · 0.45
MorePluginsMethod · 0.45
GetPluginMethod · 0.45
GetSerialMethod · 0.45
NextPluginMethod · 0.45
ReleaseMethod · 0.45

Tested by

no test coverage detected